First release

This commit is contained in:
Owen Quinlan 2021-07-02 19:29:34 +10:00
commit fa6c85266e
2339 changed files with 761050 additions and 0 deletions

18
node_modules/route-manifest/rmanifest.d.ts generated vendored Normal file
View file

@ -0,0 +1,18 @@
export type Pattern = string;
export interface Asset {
type: string;
href: string;
}
export interface Entry<T> {
files: T[];
headers: any[];
}
export type FileMap<T = Asset> = Record<Pattern, T[]>;
export type Manifest<T = Asset> = Record<Pattern, Entry<T>>;
declare function rmanifest<T = Asset>(contents: FileMap<T> | Manifest<T>, uri: string, withCommons?: boolean): Entry<T>;
export default rmanifest;