UNPKG

401 BTypeScriptView Raw
1import { EmailMatch } from './email-match';
2import { HashtagMatch } from './hashtag-match';
3import { MentionMatch } from './mention-match';
4import { PhoneMatch } from './phone-match';
5import { UrlMatch } from './url-match';
6export declare type Match = EmailMatch | HashtagMatch | MentionMatch | PhoneMatch | UrlMatch;
7export declare type MatchType = 'email' | 'hashtag' | 'mention' | 'phone' | 'url';