()
| 279 | * Construction-only — not applied during decode; see file-level note. |
| 280 | */ |
| 281 | export const brandedStringId = <Id extends string & B.Brand<any>>(): BrandedStringIdSchema<Id> => |
| 282 | withDefaultMake( |
| 283 | Object.assign(Object.create(StringId), StringId) as BrandedStringIdSchema<Id> |
| 284 | ) |
| 285 | |
| 286 | export interface PrefixedStringUtils< |
| 287 | Type extends StringId, |
no test coverage detected
searching dependent graphs…