Skip to content

Latest commit

 

History

History
16 lines (11 loc) · 268 Bytes

FRICTION.md

File metadata and controls

16 lines (11 loc) · 268 Bytes

Inability to easily use a record as an extends bound

TBD:

function X<T extends Record<string, unknown>>(t: T) {
  return t;
}

X({ a: 1, b: 2 });
//

History

2022-10-25 to 2022-11-4