17 lines
645 B
TypeScript
17 lines
645 B
TypeScript
|
/*---------------------------------------------------------------------------------------------
|
||
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||
|
*--------------------------------------------------------------------------------------------*/
|
||
|
|
||
|
import { CspAlerter } from './csp';
|
||
|
import { StyleLoadingMonitor } from './loading';
|
||
|
|
||
|
declare global {
|
||
|
interface Window {
|
||
|
cspAlerter: CspAlerter;
|
||
|
styleLoadingMonitor: StyleLoadingMonitor;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
window.cspAlerter = new CspAlerter();
|
||
|
window.styleLoadingMonitor = new StyleLoadingMonitor();
|