First release
This commit is contained in:
commit
fa6c85266e
2339 changed files with 761050 additions and 0 deletions
18
node_modules/route-manifest/rmanifest.d.ts
generated
vendored
Normal file
18
node_modules/route-manifest/rmanifest.d.ts
generated
vendored
Normal 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;
|
Loading…
Add table
Add a link
Reference in a new issue