From edbf2397d59dc8023257e03c28704b9612802a15 Mon Sep 17 00:00:00 2001 From: Eli Grey <~@eligrey.com> Date: Wed, 24 Jul 2024 01:30:31 +0000 Subject: [PATCH] fix pre-commit --- src/core.ts | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/core.ts b/src/core.ts index 8802600..84a6df9 100644 --- a/src/core.ts +++ b/src/core.ts @@ -430,9 +430,11 @@ export type Removable = { }; /** Any value which implements `toString()` */ -export type Stringifiable = string | (string & { - toString(): string; -}); +export type Stringifiable = + | string + | (string & { + toString(): string; + }); /** Special `defaultConsent` automatic opt-out value for any potential reason */ export const AutoOptOut = t.literal('Auto');