mirror of
https://github.com/daief/gm-response-proxy.git
synced 2026-03-15 02:33:17 +08:00
16 lines
501 B
TypeScript
16 lines
501 B
TypeScript
declare module 'terser-webpack-plugin';
|
|
|
|
declare module '*.less';
|
|
declare module '*.vue' {
|
|
import { defineComponent } from 'vue';
|
|
const Component: ReturnType<typeof defineComponent>;
|
|
export default Component;
|
|
}
|
|
|
|
declare function GM_log(...msg: any[]): void;
|
|
declare function GM_setValue(name: string, value: any): void;
|
|
declare function GM_addStyle(css: string): void;
|
|
declare function GM_getValue(name: string, defaultValue?: any): any;
|
|
|
|
declare const unsafeWindow: Window & typeof globalThis;
|