| 9 | } |
| 10 | |
| 11 | export interface MethodParameter { |
| 12 | name: string; |
| 13 | description?: string; |
| 14 | optional: boolean; |
| 15 | type?: TypeDescriptor<FunctionSignatureType> | null; |
| 16 | } |
| 17 | |
| 18 | export interface MethodReturn { |
| 19 | description?: string; |
nothing calls this directly
no outgoing calls
no test coverage detected