Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonkuhrt committed Apr 28, 2024
1 parent ab348a5 commit 3c5eb35
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion src/layers/3_SelectionSet/_.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export * from './types.js'
export * as Print from './encode.js'
export * from './types.js'
1 change: 0 additions & 1 deletion src/layers/3_SelectionSet/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,6 @@ export type ClientIndicator = ClientIndicatorPositive | ClientIndicatorNegative
export type ClientIndicatorPositive = true | 1
export type ClientIndicatorNegative = false | 0 | undefined


export type OmitNegativeIndicators<$SelectionSet> = {
[K in keyof $SelectionSet as $SelectionSet[K] extends ClientIndicatorNegative ? never : K]: $SelectionSet[K]
}
Expand Down

0 comments on commit 3c5eb35

Please sign in to comment.