IosParser.d.ts 288 B

12345678
  1. import { IParser, Entry } from '../types';
  2. export default class IosParser implements IParser {
  3. static timeRegex: RegExp;
  4. static headerRegex: RegExp;
  5. splitMessages(raw: string): string[];
  6. parseMessages(messages: string[]): Entry[];
  7. }
  8. //# sourceMappingURL=IosParser.d.ts.map