Skip to content

Commit 0f4b457

Browse files
committed
chore: format
Signed-off-by: Mirko Mollik <mirkomollik@gmail.com>
1 parent 3d3f96e commit 0f4b457

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

packages/types/src/type.ts

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -167,15 +167,15 @@ type Frame<Payload> = Payload extends Array<infer U>
167167
? Record<number, Frame<U>> & SD<Payload> & DECOY
168168
: SD<Payload> & DECOY
169169
: Payload extends Record<string, unknown>
170-
? NonNever<
171-
{
172-
[K in keyof Payload]?: Payload[K] extends object
173-
? Frame<Payload[K]>
174-
: never;
175-
} & SD<Payload> &
176-
DECOY
177-
>
178-
: SD<Payload> & DECOY;
170+
? NonNever<
171+
{
172+
[K in keyof Payload]?: Payload[K] extends object
173+
? Frame<Payload[K]>
174+
: never;
175+
} & SD<Payload> &
176+
DECOY
177+
>
178+
: SD<Payload> & DECOY;
179179

180180
/**
181181
* This is a disclosureFrame type that is used to represent the structure of what is being disclosed.

0 commit comments

Comments
 (0)