/*! * Copyright Adaptavist 2022 (c) All rights reserved */ import { SuperBatchWebResources } from "../definitions/SuperBatchWebResources"; export interface WebResourceDependencies { _expandable?: { uris?: string | { [x: string]: any; }; [x: string]: any; }; keys?: Array; contexts?: Array; uris?: { all?: Array | string; css?: Array | string; js?: Array | string; _expandable?: { css?: Array | string; js?: Array | string; [x: string]: any; }; }; tags?: { all?: string; css?: string; data?: string; js?: string; _expandable?: { [x: string]: any; }; }; superbatch?: SuperBatchWebResources; } //# sourceMappingURL=WebResourceDependencies.d.ts.map