| 38 | export type StringInput = string | Readable; |
| 39 | |
| 40 | export interface JSONTypeSource { |
| 41 | name: string; |
| 42 | samples: StringInput[]; |
| 43 | } |
| 44 | |
| 45 | export function isJSONSource(source: TypeSource): source is JSONTypeSource { |
| 46 | return "samples" in source; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…