(schema: AnySchema | undefined)
| 63 | } |
| 64 | |
| 65 | export function getEventIteratorSchemaDetails(schema: AnySchema | undefined): undefined | EventIteratorSchemaDetails { |
| 66 | if (schema === undefined) { |
| 67 | return undefined |
| 68 | } |
| 69 | |
| 70 | return (schema['~standard'] as any)[EVENT_ITERATOR_DETAILS_SYMBOL] |
| 71 | } |
no outgoing calls
no test coverage detected