@bitblit/ratchet-warden-common
Version:
Typescript library to simplify using simplewebauthn and secondary auth methods over GraphQL
9 lines (8 loc) • 339 B
TypeScript
import { WardenStoreRegistrationResponseType } from './warden-store-registration-response-type.js';
import { WardenEntry } from './warden-entry.js';
export interface WardenStoreRegistrationResponse {
updatedEntry?: WardenEntry;
registrationResponseId: string;
result: WardenStoreRegistrationResponseType;
error?: string;
}