react-metatags-hook
Version:
React Hook to manage html meta tags
12 lines (11 loc) • 476 B
TypeScript
import { MetaTagsConfig } from './types';
export declare const useMetaTags: (config: MetaTagsConfig, dependencies: unknown[]) => void;
/**
* @deprecated Do not use the default export from 'react-metatags-hook', it will be removed in a future release.
*
* Please use the named export `useMetaTags`.
*
* e.g. `import { useMetaTags } from 'react-metatags-hook'`
*/
declare const _default: (config: MetaTagsConfig, dependencies: unknown[]) => void;
export default _default;