Files
2026-02-21 10:33:18 +01:00

16 lines
399 B
TypeScript

export declare const darkModeOption: {
name: string;
cliFlag: "dark-mode";
description: () => import("react/jsx-runtime").JSX.Element;
ssrName: string;
docLink: string;
type: boolean;
getValue: ({ commandLine }: {
commandLine: Record<string, unknown>;
}) => {
source: string;
value: boolean;
};
setConfig: (value: boolean) => void;
};