UNPKG

md-link-extractor

Version:
11 lines (10 loc) 237 B
export type LinkFormat = '[]()' | '<>' | '()' | 'raw'; export type LinkType = 'link' | 'email'; export interface Link { text: string; href: string; line: string; raw: string; type: LinkType; format: LinkFormat; }