DocSpace-client/packages/login/index.d.ts

22 lines
423 B
TypeScript
Raw Normal View History

2022-08-04 09:14:55 +00:00
import { Request } from "express";
export {};
declare global {
interface Window {
authCallback?: (profile: object) => {};
__ASC_INITIAL_LOGIN_STATE__?: object;
initialI18nStoreASC?: object;
initialLanguage?: string;
}
interface IInitLoginState {
error?: string | object;
}
interface DevRequest extends Request {
assets?: object;
}
var IS_DEVELOPMENT: boolean;
var PORT: number;
}