9 lines
217 B
TypeScript
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);
|
||
|
}
|