| 1 | export interface MIInfo { |
| 2 | token: number; |
| 3 | outOfBandRecord: { isStream: boolean, type: string, asyncClass: string, output: [string, any][], content: string }[]; |
| 4 | resultRecords: { resultClass: string, results: [string, any][] }; |
| 5 | } |
| 6 | |
| 7 | const octalMatch = /^[0-7]{3}/; |
| 8 | function parseString(str: string): string { |
nothing calls this directly
no outgoing calls
no test coverage detected