UNPKG

@codegouvfr/react-dsfr

Version:

French State Design System React integration library

15 lines (14 loc) 476 B
import type { ColorScheme } from "./useIsDark"; type Params = { defaultColorScheme: ColorScheme | "system"; verbose: boolean; nextParams: { doPersistDarkModePreferenceWithCookie: boolean; registerEffectAction: (effect: () => void) => void; } | undefined; doCheckNonce: boolean; trustedTypesPolicyName: string; }; export declare function start(params: Params): Promise<void>; export declare const prDsfrLoaded: Promise<void>; export {};