2.0.9 • Published 5 months ago

@types/react-document-title v2.0.9

Weekly downloads
17,657
License
MIT
Repository
github
Last release
5 months ago

Installation

npm install --save @types/react-document-title

Summary

This package contains type definitions for react-document-title (https://github.com/gaearon/react-document-title).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-document-title.

index.d.ts

// 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.8

import * as React from 'react';

interface DocumentTitleProps {
    title: string;
    children?: React.ReactChild | null | undefined;
}

declare class DocumentTitle extends React.Component<DocumentTitleProps, any> {
}

export default DocumentTitle;

Additional Details

  • Last updated: Thu, 08 Jul 2021 20:20:37 GMT
  • Dependencies: @types/react
  • Global values: none

Credits

These definitions were written by Cleve Littlefield.