| 1 | export interface Documentation { |
| 2 | childContext?: Record<string, PropDescriptor>; |
| 3 | composes?: string[]; |
| 4 | context?: Record<string, PropDescriptor>; |
| 5 | description?: string; |
| 6 | displayName?: string; |
| 7 | methods?: MethodDescriptor[]; |
| 8 | props?: Record<string, PropDescriptor>; |
| 9 | } |
| 10 | |
| 11 | export interface MethodParameter { |
| 12 | name: string; |
nothing calls this directly
no outgoing calls
no test coverage detected