mirror of
https://github.com/kmc7468/arkvault.git
synced 2026-02-03 23:56:53 +00:00
18 lines
363 B
TypeScript
18 lines
363 B
TypeScript
import type { Generated } from "kysely";
|
|
|
|
export interface ThumbnailTable {
|
|
id: Generated<number>;
|
|
directory_id: number | null;
|
|
file_id: number | null;
|
|
category_id: number | null;
|
|
path: string;
|
|
updated_at: Date;
|
|
encrypted_content_iv: string | null; // Base64
|
|
}
|
|
|
|
declare module "./index" {
|
|
interface Database {
|
|
thumbnail: ThumbnailTable;
|
|
}
|
|
}
|