-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathindex.d.ts
37 lines (31 loc) · 923 Bytes
/
index.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
declare namespace NodeJS {
export interface ProcessEnv {
APP_URL: string;
NEXT_PUBLIC_APP_URL: string;
REVALIDATE_TOKEN: string;
NEXT_PUBLIC_AUTHORIZATION_TOKEN: string;
NEXT_PUBLIC_API_URL: string;
NEXT_PUBLIC_GMAP_API_KEY: string;
NEXT_PUBLIC_MAPTILER_API_KEY: string;
MIXPANEL_TOKEN: string;
MIXPANEL_PROJECT_ID: string;
MIXPANEL_SA_USER: string;
MIXPANEL_SA_SECRET: string;
NEXT_PUBLIC_MIXPANEL_TOKEN: string;
}
}
declare module "chartjs-plugin-crosshair" {
export const CrosshairPlugin: any;
export const Interpolate: any;
export interface InteractionModeMap {
interpolate: Function;
}
}
// canvas2svg mock typings
declare module "canvas2svg" {
export default (width: number, height: number) => any;
getSerializedSvg();
}
declare module "geojson-bbox" {
export default function (geojson: GeoJSONObject): [number, number, number, number] {}
}