import { Backend } from "../core/backend"; import { Kuzzle } from "../kuzzle"; /** * This file contains global type declarations for Kuzzle. * We need to use `var` so Typescript extends the globalThis type. * See https://www.typescriptlang.org/docs/handbook/release-notes/typescript-3-4.html#type-checking-for-globalthis */ declare global { var app: Backend; var kuzzle: Kuzzle; var NODE_ENV: string; } export {};