UNPKG

383 BTypeScriptView Raw
1import type { NavigationContainerRef, ParamListBase } from '@react-navigation/core';
2import * as React from 'react';
3import type { DocumentTitleOptions } from './types';
4/**
5 * Set the document title for the active screen
6 */
7export default function useDocumentTitle(ref: React.RefObject<NavigationContainerRef<ParamListBase>>, { enabled, formatter, }?: DocumentTitleOptions): void;