Skip to content

Commit

Permalink
fix pre-commit
Browse files Browse the repository at this point in the history
  • Loading branch information
eligrey committed Jul 24, 2024
1 parent 25341fb commit edbf239
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/core.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down

0 comments on commit edbf239

Please sign in to comment.