export interface Blob { cid: string mimeType: string size: number tempKey: string | null // width: number | null // @TODO: actually drop these columns from the db // height: number | null createdAt: string takedownRef: string | null } export const tableName = 'blob' export type PartialDB = { [tableName]: Blob }