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

9 lines
196 B
TypeScript

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