Skip to content

Instantly share code, notes, and snippets.

@ebroder
Created April 14, 2019 01:26
Show Gist options
  • Save ebroder/dc253a63a7f120ac76d7dea004bd9ba2 to your computer and use it in GitHub Desktop.
Save ebroder/dc253a63a7f120ac76d7dea004bd9ba2 to your computer and use it in GitHub Desktop.
interface Test {
x: string
};
function test<T extends Test>() {
const y: Partial<T> = { x: "foo" };
}