turkmentv_front/typings/theme.type.ts

7 lines
162 B
TypeScript

import { Dispatch, SetStateAction } from 'react';
export interface ITheme {
theme: 'dark' | 'light';
setTheme: Dispatch<SetStateAction<'dark' | 'light'>>;
}