Asset
Manager
: { add
: ((label
: string, type
: AssetType, path
: string) => Promise<void>); assets
: AssetStore; remove
: ((label
: string, type
: AssetType) => void); }
Type declaration
-
add: ((label: string, type: AssetType, path: string) => Promise<void>)
-
- (label: string, type: AssetType, path: string): Promise<void>
-
Parameters
-
label: string
-
-
path: string
Returns Promise<void>
-
-
remove: ((label: string, type: AssetType) => void)
-
- (label: string, type: AssetType): void
-
Returns void