MyCrypto/shared/enclave/server/views/passphrase.ts

9 lines
217 B
TypeScript

import showPrompt from './showPrompt';
import template from './passphrase.html';
const EVENT = 'enclave:passphrase';
export function showPassphrasePrompt(): Promise<string> {
return showPrompt(template, EVENT);
}