src/client/app/modules/core/interfaces/iwindow.ts
Properties |
Methods |
alert |
alert(msg: string)
|
Returns :
void
|
confirm |
confirm(msg: string)
|
Returns :
void
|
location |
location:
|
Type : any
|
navigator |
navigator:
|
Type : any
|
export interface IWindow {
navigator: any;
location: any;
alert(msg: string): void;
confirm(msg: string): void;
}