| 62 | } |
| 63 | |
| 64 | export interface ChildParameter { |
| 65 | name: string |
| 66 | description: string |
| 67 | type: string |
| 68 | isRequired?: boolean |
| 69 | enum?: Array<string> |
| 70 | default?: string |
| 71 | childParamsGroups?: ChildParameter[] |
| 72 | } |
| 73 | |
| 74 | export type ExampleT = { |
| 75 | description: string |
nothing calls this directly
no outgoing calls
no test coverage detected