move types

This commit is contained in:
Fractal-Tess
2024-01-24 04:08:41 +02:00
parent 10bff1dfce
commit 7af03b86af
2 changed files with 2 additions and 2 deletions

2
src/lib/types.ts Normal file
View File

@@ -0,0 +1,2 @@
export const themes = ['dark', 'light'] as const
export type Theme = (typeof themes)[number]

View File

@@ -1,2 +0,0 @@
export const themes = ['dark', 'light'] as const;
export type Theme = (typeof themes)[number];