File size: 201 Bytes
2b7aae2
 
 
 
 
 
 
1
2
3
4
5
6
7
8
export interface LoaderUtils {
	decodeText(array: BufferSource): string;
	extractUrlBase(url: string): string;
	resolveURL(url: string, path: string): string;
}

export const LoaderUtils: LoaderUtils;