(schema: JSONSchema)
| 6 | *@internal |
| 7 | */ |
| 8 | export function isFileSchema(schema: JSONSchema): schema is FileSchema { |
| 9 | return isObject(schema) && schema.type === 'string' && typeof schema.contentMediaType === 'string' |
| 10 | } |
| 11 | |
| 12 | /** |
| 13 | * @internal |
no test coverage detected