diff --git a/src/types/Pattern.ts b/src/types/Pattern.ts index 47e124d..6fecf1f 100644 --- a/src/types/Pattern.ts +++ b/src/types/Pattern.ts @@ -145,7 +145,9 @@ export type UnknownPattern = * @example * const pattern: P.Pattern = { name: P.stringĀ } */ -export type Pattern = unknown extends a ? UnknownPattern : KnownPattern; +export type Pattern = unknown extends a + ? UnknownPattern + : KnownPattern; type KnownPattern = KnownPatternInternal;