mirror of
https://github.com/KevinMidboe/seasoned.git
synced 2026-05-11 08:35:31 +00:00
5 lines
108 B
TypeScript
5 lines
108 B
TypeScript
export default interface IStateDarkmode {
|
|
darkmodeSupported: boolean;
|
|
userChoice: string | undefined;
|
|
}
|