webpack-ext-reloader-mv3
Version:
Watch for file changes and reload WebExtensions on browsers.
20 lines (16 loc) • 302 B
TypeScript
declare module "*.json" {
const json: any;
export = json;
}
declare module "*.txt" {
const text: string;
export = text;
}
declare module "*.source.ts" {
const sourceCode: string;
export = sourceCode;
}
declare module "raw-loader!*" {
const rawText: string;
export default rawText;
}