Skip to content

ParseResult

ParseResult<Brand> = { id: Id<Brand>; ok: true; } | { error: ParseError; ok: false; }

Defined in: src/types.ts:63

Result of safeParse(): canonical Id<Brand> or a ParseError.

Brand extends string