9 lines
219 B
TypeScript
9 lines
219 B
TypeScript
|
export function main() {
|
||
|
const meows = MediaFile.db.prepare(`
|
||
|
select * from media_files;
|
||
|
`).as(MediaFile).array();
|
||
|
console.log(meows);
|
||
|
}
|
||
|
|
||
|
import { MediaFile } from "@/file-viewer/models/MediaFile.ts";
|