@openfin/servicenow
Version:
Connect OpenFin Container with ServiceNow
22 lines (21 loc) • 688 B
TypeScript
export declare const LOG_PREFIX = "ServiceNow";
/**
* Disables module logging if it has been enabled by a call to {@link enableLogging}.
*
* This function is registered globally so you can disable logging at any time by calling:
*
* ```js
* window.fin.Integrations.ServiceNow.disableLogging();
* ```
*/
export declare const disableLogging: () => void;
/**
* Enables module logging to the console for debugging/troubleshooting purposes. This is off by default.
*
* This function is registered globally so you can enable logging at any time by calling:
*
* ```js
* window.fin.Integrations.ServiceNow.enableLogging();
* ```
*/
export declare const enableLogging: () => void;