DefinitelyTyped/types/react-document-title/index.d.ts
2017-08-08 13:48:09 -07:00

16 lines
445 B
TypeScript

// Type definitions for react-document-title 2.0
// Project: https://github.com/gaearon/react-document-title
// Definitions by: Cleve Littlefield <https://github.com/cleverguy25>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
import * as React from 'react';
interface DocumentTitleProps {
title: string;
}
declare class DocumentTitle extends React.Component<DocumentTitleProps, any> {
}
export default DocumentTitle;