types-spring icon indicating copy to clipboard operation
types-spring copied to clipboard

improved types for every day sounding like symphony

Results 4 types-spring issues
Sort by recently updated
recently updated
newest added

TODO change `KeyboardEvent.code` to union of possible codes instead of string

### Why not linked optional type? ```ts type LinkedOptions = LinkedOptionalType const a: LinkedOptions // {a?: number} | {a: number, b?: number} | {a: number, b: number, c?: number} ```...

```ts interface RecordConstructor { new (): Record; new (entries: [K, T][]): Record; keys(o: O): keyof O[]; values(o: O): O[keyof O]; entries(o: O): { [K in keyof O]-?: [K, O[K]] }[keyof...