@types/react-document-title
Version:
TypeScript definitions for react-document-title
13 lines (9 loc) • 324 B
TypeScript
import * as React from "react";
declare namespace DocumentTitle {
interface DocumentTitleProps {
title: string;
children?: React.ReactElement | number | string | null | undefined;
}
}
declare class DocumentTitle extends React.Component<DocumentTitle.DocumentTitleProps> {}
export = DocumentTitle;