3 lines
95 B
TypeScript
3 lines
95 B
TypeScript
export const themes = ['dark', 'light'] as const;
|
|
export type Theme = (typeof themes)[number];
|