@thomaschaplin/image-to-totp
Version:
image-to-totp converts qr code images to totp codes
17 lines (16 loc) • 309 B
TypeScript
declare type Label = {
issuer: string;
account: string;
};
declare type Query = {
secret: string;
issuer: string;
};
export declare type Totp = {
fullUri: string;
type: string;
label: Label;
query: Query;
};
export declare const parseTotpUri: (uri: string) => Totp;
export {};