export interface BaseRxDbDocument {
    id: string;
    updatedAt: number;
    payload: string;
    deleted: boolean;
}
