File: /var/www/quadcode.com/src/app.d.ts
// See https://kit.svelte.dev/docs/types#app
// for information about these interfaces
declare global {
namespace App {
// interface Error {}
interface Locals {
lang: string;
}
// interface PageData {}
// interface Platform {}
}
interface Window {
isUserFillingForm: boolean | undefined;
__formTrackerInitialized__: boolean | undefined;
dataLayer?: {
push: (v: Record<string, string>) => void;
};
grecaptcha?: {
execute(opt_widget_id?: string): void;
render(container: HTMLElement, parameters: { [key: string]: string }): void;
reset(opt_widget_id?: string): void;
getResponse(opt_widget_id?: string): string;
ready: boolean;
};
Calendly?: {
initPopupWidget: (v: Record<string, string>) => void;
};
}
}
declare module 'intl-tel-input';
export {};