(_ context.Context, params *GetTypePropertyParams)
| 1520 | } |
| 1521 | |
| 1522 | func (s *Session) handleGetTypesOfType(_ context.Context, params *GetTypePropertyParams) ([]*TypeResponse, error) { |
| 1523 | return s.resolveTypeArrayPropertyOfType(params, (*checker.Type).Types) |
| 1524 | } |
| 1525 | |
| 1526 | func (s *Session) handleGetTypeParametersOfType(_ context.Context, params *GetTypePropertyParams) ([]*TypeResponse, error) { |
| 1527 | return s.resolveTypeArrayPropertyOfType(params, func(t *checker.Type) []*checker.Type { return t.AsInterfaceType().TypeParameters() }) |
no test coverage detected