@sheerid/jslib-nightly
Version:
SheerID JavaScript Library
20 lines (19 loc) • 498 B
TypeScript
import { Hook, SheerIdJsApi } from './lib/types/types';
declare global {
interface Window {
/**
* Needed to maintain the ability to set sheerid.hooks globally before loading the jslib.
*/
sheerId: {
hooks: Hook[];
};
NREUM: any;
gtag: any;
IPQ: any;
Startup: any;
sheerIdInstallType: string;
sheerIdProjectSha: string;
}
}
declare const thisJslib: SheerIdJsApi;
export default thisJslib;