4 lines
80 B
TypeScript
4 lines
80 B
TypeScript
|
export interface BaseLoader {
|
||
|
get(path: string): Promise<ArrayBuffer>;
|
||
|
}
|