7 lines
81 B
TypeScript
7 lines
81 B
TypeScript
declare enum Theme {
|
|
Light = "light",
|
|
Dark = "dark"
|
|
}
|
|
|
|
export { Theme };
|