| 1234567891011121314151617 |
- export type CdnManifestArgs = {
- integrity?: string;
- async?: boolean;
- defer?: boolean;
- };
- export type CdnManifest = {
- name: string;
- url: string;
- groups?: string[];
- args?: CdnManifestArgs;
- };
- export type CdnResource = {
- manifest: CdnManifest;
- outDir: string;
- };
|