DefinitelyTyped/types/linkify-markdown/index.d.ts
2020-07-06 15:06:51 -07:00

11 lines
397 B
TypeScript

// Type definitions for linkify-markdown 1.0
// Project: https://github.com/nitin42/linkify-markdown#readme
// Definitions by: Jamie Magee <https://github.com/JamieMagee>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
export function linkify(source: string, options?: LinkifyOptions): string;
export interface LinkifyOptions {
strong?: boolean;
repository?: string;
}