match.d.ts 401 B

1234567
  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 declare type Match = EmailMatch | HashtagMatch | MentionMatch | PhoneMatch | UrlMatch;
  7. export declare type MatchType = 'email' | 'hashtag' | 'mention' | 'phone' | 'url';