2019-06-19 14:40:52 +00:00
|
|
|
declare module "*.jpg";
|
|
|
|
declare module "*.png";
|
|
|
|
declare module "*.svg" {
|
|
|
|
const content: any;
|
|
|
|
export default content;
|
|
|
|
}
|
2020-11-30 10:26:51 +00:00
|
|
|
|
2023-01-16 13:55:38 +00:00
|
|
|
declare const FLAGS_SERVICE_ENABLED: boolean;
|
|
|
|
declare const FLAGS: Record<string, string>;
|
|
|
|
|
2020-11-30 10:26:51 +00:00
|
|
|
declare interface Window {
|
|
|
|
PasswordCredential: PasswordCredential;
|
2022-11-16 15:01:34 +00:00
|
|
|
__SALEOR_CONFIG__: {
|
|
|
|
API_URL: string;
|
|
|
|
APP_MOUNT_URI: string;
|
2023-01-10 10:04:30 +00:00
|
|
|
APPS_MARKETPLACE_API_URI?: string;
|
|
|
|
APPS_TUNNEL_URL_KEYWORDS?: string;
|
2023-03-03 07:51:35 +00:00
|
|
|
IS_CLOUD_INSTANCE?: string;
|
2022-11-16 15:01:34 +00:00
|
|
|
};
|
2020-11-30 10:26:51 +00:00
|
|
|
}
|