(_ context.Context, params *GetTypePropertyParams)
| 1554 | } |
| 1555 | |
| 1556 | func (s *Session) handleGetObjectTypeOfType(_ context.Context, params *GetTypePropertyParams) (*TypeResponse, error) { |
| 1557 | return s.resolveTypePropertyOfType(params, func(t *checker.Type) *checker.Type { return t.AsIndexedAccessType().ObjectType() }) |
| 1558 | } |
| 1559 | |
| 1560 | func (s *Session) handleGetIndexTypeOfType(_ context.Context, params *GetTypePropertyParams) (*TypeResponse, error) { |
| 1561 | return s.resolveTypePropertyOfType(params, func(t *checker.Type) *checker.Type { return t.AsIndexedAccessType().IndexType() }) |
no test coverage detected