(_ context.Context, params *GetTypePropertyParams)
| 1562 | } |
| 1563 | |
| 1564 | func (s *Session) handleGetCheckTypeOfType(_ context.Context, params *GetTypePropertyParams) (*TypeResponse, error) { |
| 1565 | return s.resolveTypePropertyOfType(params, func(t *checker.Type) *checker.Type { return t.AsConditionalType().CheckType() }) |
| 1566 | } |
| 1567 | |
| 1568 | func (s *Session) handleGetExtendsTypeOfType(_ context.Context, params *GetTypePropertyParams) (*TypeResponse, error) { |
| 1569 | return s.resolveTypePropertyOfType(params, func(t *checker.Type) *checker.Type { return t.AsConditionalType().ExtendsType() }) |
no test coverage detected