mirror of
https://github.com/Stirling-Tools/Stirling-PDF.git
synced 2025-05-11 16:55:54 +00:00
6 lines
185 B
TypeScript
6 lines
185 B
TypeScript
![]() |
|
||
|
export type ValuesType<T> = T[keyof T];
|
||
|
|
||
|
// https://dev.to/vborodulin/ts-how-to-override-properties-with-type-intersection-554l
|
||
|
export type Override<T1, T2> = Omit<T1, keyof T2> & T2;
|