import { KeyType } from "./types"; export interface Key { _id: string; user_id: string; type: KeyType; key: string; datetimes: number[]; data: any; expired: boolean; }