(o: object)
| 25 | } |
| 26 | |
| 27 | export function getCustomOpenAPIOperation(o: object): OverrideOperationValue | undefined { |
| 28 | return (o as any)[OPERATION_EXTENDER_SYMBOL] as OverrideOperationValue | undefined |
| 29 | } |
| 30 | |
| 31 | export function applyCustomOpenAPIOperation(operation: OpenAPI.OperationObject, contract: AnyContractProcedure): OpenAPI.OperationObject { |
| 32 | const operationCustoms: OverrideOperationValue[] = [] |
no outgoing calls
no test coverage detected