aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/frontend/src/global.d.ts
blob: 0533a46e3aa6c9e4e38ca99674d1d485e4a85a62 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
declare const DEBUG: boolean;

declare const PACKAGE_NAME: string;

declare const PACKAGE_VERSION: string;

declare module '*.module.scss' {
  const cssVariables: { [key in string]?: string };
  // eslint-disable-next-line import/no-default-export
  export default cssVariables;
}