UNPKG

@refinedev/core

Version:

Refine is a React meta-framework for building enterprise-level, data-intensive applications rapidly with support for modern UI libraries and headless integrations.

18 lines 549 B
import React, { type ReactNode } from "react"; type MetaContextValue = Record<string, any>; export declare const MetaContext: React.Context<MetaContextValue>; /** * Is used to provide meta data to the children components. * @internal */ export declare const MetaContextProvider: ({ children, value, }: { children: ReactNode; value: MetaContextValue; }) => React.JSX.Element; /** * @internal * @returns The MetaContext value. */ export declare const useMetaContext: () => MetaContextValue; export {}; //# sourceMappingURL=index.d.ts.map