Skip to content

Commit

Permalink
Fix missing exported internal types (#918)
Browse files Browse the repository at this point in the history
  • Loading branch information
tommy-mitchell committed Jul 18, 2024
1 parent e8d6dfe commit 4b74444
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/internal/keys.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ type BaseKeyFilter<Type, Key extends keyof Type> = Key extends symbol
/**
Returns the required keys.
*/
type FilterDefinedKeys<T extends object> = Exclude<
export type FilterDefinedKeys<T extends object> = Exclude<
{
[Key in keyof T]: IsAny<T[Key]> extends true
? Key
Expand All @@ -37,7 +37,7 @@ undefined
/**
Returns the optional keys.
*/
type FilterOptionalKeys<T extends object> = Exclude<
export type FilterOptionalKeys<T extends object> = Exclude<
{
[Key in keyof T]: IsAny<T[Key]> extends true
? never
Expand Down

0 comments on commit 4b74444

Please sign in to comment.