mirror of
https://github.com/mickael-kerjean/filestash.git
synced 2025-11-03 21:17:33 +08:00
8 lines
269 B
TypeScript
8 lines
269 B
TypeScript
export function loadScript(url: string): Promise<string>;
|
|
|
|
export function CSS(baseURL: string, ...arrayOfFilenames: string[]): Promise<string>;
|
|
|
|
export function loadSingleCSS(baseURL: string, filename: string): Promise<string>;
|
|
|
|
export function init(): Promise<void>;
|