unity-builder/src/global.d.ts

11 lines
219 B
TypeScript
Raw Normal View History

2022-08-06 17:51:21 +00:00
/* eslint-disable no-unused-vars */
export type Level = 'debug' | 'info' | 'warn' | 'error' | 'critical';
declare global {
const log: (level: Level, ...args: any[]) => void;
interface Window {
log: any;
}
}