webpack-extension-reloader
Version:
Watch for changes and force the reload of the browser extension
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;
}