mirror of
https://github.com/jakejarvis/dark-mode.git
synced 2025-04-25 19:55:22 -04:00
9 lines
211 B
TypeScript
9 lines
211 B
TypeScript
interface DarkModeOptions {
|
|
toggle?: HTMLElement;
|
|
classes?: { dark: string, light: string };
|
|
default?: string;
|
|
storageKey?: string;
|
|
}
|
|
|
|
export default function (options?: Partial<DarkModeOptions>): void;
|