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