10 lines
111 B
TypeScript
10 lines
111 B
TypeScript
|
declare global {
|
||
|
interface Window {
|
||
|
wcSettings: {
|
||
|
isRemoteLoggingEnabled: boolean;
|
||
|
};
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export {};
|