10 lines
143 B
TypeScript
10 lines
143 B
TypeScript
export let defaultme = null;
|
|
declare global {
|
|
namespace NodeJS {
|
|
interface Global {
|
|
window: any;
|
|
navigator: any;
|
|
}
|
|
}
|
|
}
|