| 6 | import { Profile } from "./profile-store"; |
| 7 | |
| 8 | interface FileSystemForLoader { |
| 9 | existsSync(pathToCheck: string): boolean; |
| 10 | readFileSync(pathToRead: string, encoding: BufferEncoding): string; |
| 11 | writeFileSync(pathToWrite: string, data: string): void; |
| 12 | mkdirSync(pathToCreate: string, options?: { recursive?: boolean }): void; |
| 13 | } |
| 14 | |
| 15 | export interface OpenapiLoaderOptions { |
| 16 | fs?: FileSystemForLoader; |
no outgoing calls
no test coverage detected