11 lines
180 B
TypeScript
11 lines
180 B
TypeScript
|
declare global {
|
||
|
interface Window {
|
||
|
wcSettings: {
|
||
|
timeZone?: string;
|
||
|
};
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/*~ If your module exports nothing, you'll need this line. Otherwise, delete it */
|
||
|
export {};
|