mirror of
https://github.com/bitwarden/browser
synced 2025-12-17 16:53:34 +00:00
try catch nodeRT module via require
This commit is contained in:
101
src/globals.d.ts
vendored
101
src/globals.d.ts
vendored
@@ -1,104 +1,3 @@
|
||||
declare function escape(s: string): string;
|
||||
declare function unescape(s: string): string;
|
||||
declare module 'duo_web_sdk';
|
||||
|
||||
/* tslint:disable */
|
||||
declare module '@nodert-win10-rs4/windows.security.credentials.ui' {
|
||||
export enum AuthenticationProtocol {
|
||||
basic,
|
||||
digest,
|
||||
ntlm,
|
||||
kerberos,
|
||||
negotiate,
|
||||
credSsp,
|
||||
custom,
|
||||
}
|
||||
|
||||
export enum CredentialSaveOption {
|
||||
unselected,
|
||||
selected,
|
||||
hidden,
|
||||
}
|
||||
|
||||
export enum UserConsentVerifierAvailability {
|
||||
available,
|
||||
deviceNotPresent,
|
||||
notConfiguredForUser,
|
||||
disabledByPolicy,
|
||||
deviceBusy,
|
||||
}
|
||||
|
||||
export enum UserConsentVerificationResult {
|
||||
verified,
|
||||
deviceNotPresent,
|
||||
notConfiguredForUser,
|
||||
disabledByPolicy,
|
||||
deviceBusy,
|
||||
retriesExhausted,
|
||||
canceled,
|
||||
}
|
||||
|
||||
export class CredentialPickerOptions {
|
||||
targetName: String;
|
||||
previousCredential: Object;
|
||||
message: String;
|
||||
errorCode: Number;
|
||||
customAuthenticationProtocol: String;
|
||||
credentialSaveOption: CredentialSaveOption;
|
||||
caption: String;
|
||||
callerSavesCredential: Boolean;
|
||||
authenticationProtocol: AuthenticationProtocol;
|
||||
alwaysDisplayDialog: Boolean;
|
||||
constructor();
|
||||
}
|
||||
|
||||
export class CredentialPickerResults {
|
||||
credential: Object;
|
||||
credentialDomainName: String;
|
||||
credentialPassword: String;
|
||||
credentialSaveOption: CredentialSaveOption;
|
||||
credentialSaved: Boolean;
|
||||
credentialUserName: String;
|
||||
errorCode: Number;
|
||||
constructor();
|
||||
}
|
||||
|
||||
export class CredentialPicker {
|
||||
constructor();
|
||||
|
||||
static pickAsync(
|
||||
options: CredentialPickerOptions,
|
||||
callback: (error: Error, result: CredentialPickerResults) => void
|
||||
): void;
|
||||
static pickAsync(
|
||||
targetName: String,
|
||||
message: String,
|
||||
callback: (error: Error, result: CredentialPickerResults) => void
|
||||
): void;
|
||||
static pickAsync(
|
||||
targetName: String,
|
||||
message: String,
|
||||
caption: String,
|
||||
callback: (error: Error, result: CredentialPickerResults) => void
|
||||
): void;
|
||||
}
|
||||
|
||||
export class UserConsentVerifier {
|
||||
constructor();
|
||||
|
||||
static checkAvailabilityAsync(
|
||||
callback: (
|
||||
error: Error,
|
||||
result: UserConsentVerifierAvailability
|
||||
) => void
|
||||
): void;
|
||||
|
||||
static requestVerificationAsync(
|
||||
message: String,
|
||||
callback: (
|
||||
error: Error,
|
||||
result: UserConsentVerificationResult
|
||||
) => void
|
||||
): void;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user