cdn.ts 280 B

1234567891011121314151617
  1. export type CdnManifestArgs = {
  2. integrity?: string,
  3. async?: boolean,
  4. defer?: boolean,
  5. };
  6. export type CdnManifest = {
  7. name: string,
  8. url: string,
  9. groups?: string[],
  10. args?: CdnManifestArgs,
  11. };
  12. export type CdnResource = {
  13. manifest: CdnManifest,
  14. outDir: string,
  15. };