botbook/node_modules/@azure/msal-browser/dist/operatingcontext/StandardOperatingContext.d.ts
Rodrigo Rodriguez 6ae15fe3e5 Updated.
2024-09-04 13:13:15 -03:00

26 lines
No EOL
989 B
TypeScript

import { BaseOperatingContext } from "./BaseOperatingContext";
export declare class StandardOperatingContext extends BaseOperatingContext {
static readonly MODULE_NAME: string;
/**
* Unique identifier for the operating context
*/
static readonly ID: string;
/**
* Return the module name. Intended for use with import() to enable dynamic import
* of the implementation associated with this operating context
* @returns
*/
getModuleName(): string;
/**
* Returns the unique identifier for this operating context
* @returns string
*/
getId(): string;
/**
* Checks whether the operating context is available.
* Confirms that the code is running a browser rather. This is required.
* @returns Promise<boolean> indicating whether this operating context is currently available.
*/
initialize(): Promise<boolean>;
}
//# sourceMappingURL=StandardOperatingContext.d.ts.map