mirror of
https://github.com/thedevs-network/kutt-extension.git
synced 2026-02-03 13:53:23 +00:00
13 lines
291 B
TypeScript
13 lines
291 B
TypeScript
declare const __DEV__: boolean;
|
|
declare const __TARGET_BROWSER__: 'chrome' | 'firefox' | 'opera';
|
|
|
|
declare module '*.module.scss' {
|
|
const classes: {readonly [key: string]: string};
|
|
export default classes;
|
|
}
|
|
|
|
declare module '*.scss' {
|
|
const content: string;
|
|
export default content;
|
|
}
|