Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
changeKind: feature
packages:
- "@typespec/compiler"
---

Enabled resolution of member properties and metaproperties through template parameters based on constraints.

```tsp
model Resource {
id: string;
}

model Read<R extends Resource> {
id: R.id;
}
```
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
changeKind: internal
packages:
- "@typespec/html-program-viewer"
- "@typespec/http-server-csharp"
- "@typespec/tspd"
---

Updated some packages to account for introduction of new TemplateParameterAccess virtual type.
Loading
Loading