You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
437 B
11 lines
437 B
export interface UserInterface {
|
|
getWindowsEncryptionPassword(): Promise<string>;
|
|
warnChromeOnLinuxWithoutCertutil(): Promise<void>;
|
|
closeFirefoxBeforeContinuing(): Promise<void>;
|
|
startFirefoxWizard(certificateHost: string): Promise<void>;
|
|
firefoxWizardPromptPage(certificateURL: string): Promise<string>;
|
|
waitForFirefoxWizard(): Promise<void>;
|
|
}
|
|
declare const DefaultUI: UserInterface;
|
|
export default DefaultUI;
|