projects/wvr-elements/src/lib/core/manifest/manifest.ts
Properties |
|
authorization |
authorization:
|
Type : any
|
Optional |
baseUrl |
baseUrl:
|
Type : string
|
description |
description:
|
Type : string
|
Optional |
entries |
entries:
|
Type : Array<ManifestEntry>
|
name |
name:
|
Type : string
|
import { ManifestEntry } from './manifest-entry';
export interface Manifest {
name: string; // unique
description?: string;
baseUrl: string;
authorization?: any;
entries: Array<ManifestEntry>;
}