mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
18 lines
537 B
TypeScript
18 lines
537 B
TypeScript
// Type definitions for react-document-meta 3.0
|
|
// Project: https://github.com/kodyl/react-document-meta#readme
|
|
// Definitions by: ulrichb <https://github.com/ulrichb>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
// TypeScript Version: 2.8
|
|
|
|
import * as React from 'react';
|
|
|
|
export interface DocumentMetaProps {
|
|
readonly title?: string;
|
|
readonly description?: string;
|
|
readonly canonical?: string;
|
|
}
|
|
|
|
declare class DocumentMeta extends React.Component<DocumentMetaProps> { }
|
|
|
|
export default DocumentMeta;
|