Type alias AssetManager

AssetManager: {
    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

        Returns Promise<void>

  • assets: AssetStore
  • remove: ((label: string, type: AssetType) => void)
      • (label: string, type: AssetType): void
      • Parameters

        Returns void

Generated using TypeDoc