cnpmcore
Version:
Private NPM Registry for Enterprise
20 lines (19 loc) • 602 B
TypeScript
import { type EasyData } from '../util/EntityUtil.ts';
import { Entity, type EntityData } from './Entity.ts';
interface WebauthnCredentialData extends EntityData {
wancId: string;
userId: string;
credentialId: string;
publicKey: string;
browserType?: string;
}
export declare class WebauthnCredential extends Entity {
wancId: string;
userId: string;
credentialId: string;
publicKey: string;
browserType?: string;
constructor(data: WebauthnCredentialData);
static create(data: EasyData<WebauthnCredentialData, 'wancId'>): WebauthnCredential;
}
export {};