@authup/server-api
Version:
This is a standalone application.
15 lines • 464 B
TypeScript
import type { Key, KeyType, Realm } from '@authup/core';
import { RealmEntity } from '../realm';
export declare class KeyEntity implements Key {
id: string;
type: `${KeyType}`;
priority: number;
signature_algorithm: Key['signature_algorithm'];
decryption_key?: string | null;
encryption_key: string | null;
created_at: Date;
updated_at: Date;
realm_id: Realm['id'];
realm: RealmEntity;
}
//# sourceMappingURL=entity.d.ts.map