DefinitelyTyped/types/react-document-title/index.d.ts
Andy 954ee278de
Update TypeScript Versions to be at least as high as dependencies' versions (#21288)
* Update `TypeScript Version`s to be at least as high as dependencies' versions

* Run through again
2017-11-08 09:12:14 -08:00

17 lines
472 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
// TypeScript Version: 2.3
import * as React from 'react';
interface DocumentTitleProps {
title: string;
}
declare class DocumentTitle extends React.Component<DocumentTitleProps, any> {
}
export default DocumentTitle;