feat: multimodal AI event creation with image support #1

Merged
old4ever merged 20 commits from image-parse into main 2026-04-07 15:21:28 -04:00
3 changed files with 65 additions and 47 deletions
Showing only changes of commit 54ca910609 - Show all commits

14
biome.json Normal file
View File

@@ -0,0 +1,14 @@
{
"$schema": "https://biomejs.dev/schemas/2.4.7/schema.json",
"css": {
"linter": {
"enabled": true
},
"parser": {
"tailwindDirectives": true
},
"formatter": {
"enabled": true
}
}
}

4
src/css.d.ts vendored Normal file
View File

@@ -0,0 +1,4 @@
declare module "*.css" {
const content: Record<string, string>;
export default content;
}