(text: string)
| 49 | specGuidance; |
| 50 | |
| 51 | const countLines = (text: string): number => { |
| 52 | let count = 1; |
| 53 | for (let pos = text.indexOf("\n"); pos !== -1; pos = text.indexOf("\n", pos + 1)) count += 1; |
| 54 | return count; |
| 55 | }; |
| 56 | |
| 57 | export interface SpecFetchCredentials { |
| 58 | readonly headers?: Record<string, string>; |