From c41d29ae3b480a61eff2228270de267afd0c53be Mon Sep 17 00:00:00 2001 From: sinclair Date: Tue, 29 Aug 2023 18:25:24 +0900 Subject: [PATCH] Formatting --- test/static/readonly-optional.ts | 2 +- test/static/transform.ts | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/test/static/readonly-optional.ts b/test/static/readonly-optional.ts index aca58d0..f51696b 100644 --- a/test/static/readonly-optional.ts +++ b/test/static/readonly-optional.ts @@ -25,4 +25,4 @@ import { Type, TSchema, TReadonlyOptional } from '@sinclair/typebox' function test(_: TReadonlyOptional) {} // @ts-expect-error test(T) -} \ No newline at end of file +} diff --git a/test/static/transform.ts b/test/static/transform.ts index e677091..a6a529e 100644 --- a/test/static/transform.ts +++ b/test/static/transform.ts @@ -214,7 +214,8 @@ import { Expect } from './assert' Expect(T).ToStaticDecode<{ x: '1' }>() Expect(T).ToStaticDecode<{ x: undefined }>() } -{ // should decode within generic function context +{ + // should decode within generic function context // https://github.com/sinclairzx81/typebox/issues/554 // prettier-ignore const ArrayOrSingle = (schema: T) =>