@passflow/passflow-react-sdk
Version:
Passflow React UI Kit
13 lines • 375 B
TypeScript
import { FC } from 'react';
type TPasskeyActions = {
passkeyId: string;
passkeyName: string | null;
actions: {
title: string;
iconId: string;
onClick: (newName: string, passkeyId: string) => Promise<void> | void;
}[];
};
export declare const PasskeyActions: FC<TPasskeyActions>;
export {};
//# sourceMappingURL=passkey-actions.d.ts.map