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