export interface syncableTable {
    _id?: string;
    createdAt: Date;
    updatedAt: Date;
    deleted: boolean;
}
