extension-develop
Version:
The develop step of Extension.js
11 lines (10 loc) • 355 B
TypeScript
import { type Manifest } from '../../../../../types';
declare function patchWebResourcesV2(manifest: Manifest): string[];
declare function patchWebResourcesV3(manifest: Manifest): ((string & {
resources: string[];
matches: string[];
}) | {
resources: string[];
matches: string[];
})[];
export { patchWebResourcesV2, patchWebResourcesV3 };