UNPKG

@bitbybit-dev/core

Version:

Bit By Bit Developers Core CAD API to Program Geometry

9 lines (8 loc) 236 B
/** * This is a manager of assets. */ export declare class AssetManager { getAsset: (fileName: string) => Promise<File>; getLocalAsset: (fileName: string) => Promise<File | File[]>; fetch: (url: string) => Promise<any>; }