DefinitelyTyped/types/linkifyjs/react.d.ts
2019-11-01 11:21:32 -07:00

10 lines
218 B
TypeScript

import * as React from "react";
import { Options } from "./index";
export interface LinkifyProps {
options?: Options;
tagName?: string;
}
export default class Linkify extends React.Component<LinkifyProps> {}