nwa-client
Version:
Native WebApp client library
18 lines • 394 B
TypeScript
import { IApp } from './interfaces';
declare global {
interface Window {
App: IApp | undefined;
NwaHandler: any;
NwaConsole: any;
select: unknown;
}
interface XMLHttpRequest {
_url: string | URL;
}
interface Navigator {
userAgentData?: any;
}
}
declare let App: any;
export default App;
//# sourceMappingURL=index.d.ts.map