( schema: Schema.brand<Schema.instanceOf<Uint8Array<ArrayBuffer>>, B> )
| 764 | * @since 4.0.0 |
| 765 | */ |
| 766 | export const UuidV4BytesInsert = <const B extends string>( |
| 767 | schema: Schema.brand<Schema.instanceOf<Uint8Array<ArrayBuffer>>, B> |
| 768 | ): UuidV4BytesInsert<B> => |
| 769 | Field({ |
| 770 | select: schema, |
| 771 | insert: UuidV4BytesWithGenerate(schema), |
| 772 | update: schema, |
| 773 | json: schema |
| 774 | }) |
| 775 | |
| 776 | /** |
| 777 | * Variant field type for a branded string UUID v4 value whose insert variant |
nothing calls this directly
no test coverage detected