Skip to content

Commit

Permalink
chore: make comments less stupid
Browse files Browse the repository at this point in the history
  • Loading branch information
0t4u committed Aug 13, 2024
1 parent 1924bdf commit 343d4dd
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/Utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,7 @@ export type OmitNested<I extends object, K extends keyof I, T extends keyof NonN
[key in keyof I]: key extends K ? Omit<I[key], T> : I[key];
};

/**
* @see https://github.com/microsoft/TypeScript/issues/43505#issuecomment-1686128430
*/
// https://github.com/microsoft/TypeScript/issues/43505#issuecomment-1686128430
export type NumericRange<
start extends number,
end extends number,
Expand Down

0 comments on commit 343d4dd

Please sign in to comment.