4 /* auto-generated by NAPI-RS */
6 export namespace biometric {
7 export function canCheckPresence(): Promise<boolean>;
8 export function checkPresence(handle: Buffer, reason: string): Promise<boolean>;
9 export function getDecryptionKey(challenge?: string | undefined | null): Promise<Array<string>>;
10 export function getSecret(key: string): Promise<Uint8Array>;
11 export function setSecret(key: string, secret: Uint8Array): Promise<void>;
12 export function deleteSecret(key: string): Promise<void>;
14 export namespace clipboard {
15 export function writeText(text: string, sensitive: boolean): Promise<void>;
16 export function read(): Promise<string>;