Interface IAsset

interface IAsset {
    file?: IFile;
    id?: string;
    path: string;
    preImported?: ImportResult[];
    preImportedRaw?: Promise<undefined | ImportResult | ImportResult[]>;
    [id: string]: any;
}

Indexable

[id: string]: any

Properties

file?: IFile
id?: string
path: string
preImported?: ImportResult[]
preImportedRaw?: Promise<undefined | ImportResult | ImportResult[]>

Generated using TypeDoc