Interface BaseAsset<T>
interface BaseAsset<T extends string> {
color?: string;
id: string;
metadata?: Record<string, unknown>;
name?: string;
type: `asset:${T}`;
}
color?: string;
id: string;
metadata?: Record<string, unknown>;
name?: string;
type: `asset:${T}`;
}
Type Parameters
- T extends string
Hierarchy (View Summary)
- BaseAsset