UNPKG

@devcycle/react-client-sdk

Version:

The DevCycle React SDK used for feature management.

13 lines (12 loc) 353 B
import { ProviderConfig } from './types'; import React, { ReactNode } from 'react'; type Props = { config: ProviderConfig; children: ReactNode; }; export declare function DevCycleProvider(props: Props): React.ReactElement; /** * @deprecated Use DevCycleProvider instead */ export declare const DVCProvider: typeof DevCycleProvider; export {};