UNPKG

the-moby-effect

Version:
31 lines 699 B
/** * 32bit unsigned integer schema. * * @since 1.0.0 */ import * as Brand from "effect/Brand"; import * as Schema from "effect/Schema"; /** * @since 1.0.0 * @category Branded types */ export type UInt32Brand = number & Brand.Brand<"UInt32">; /** * @since 1.0.0 * @category Branded constructors */ export declare const UInt32Brand: Brand.Brand.Constructor<UInt32Brand>; /** * @since 1.0.0 * @category Api interface */ export interface $UInt32 extends Schema.Annotable<$UInt32, UInt32Brand, Brand.Brand.Unbranded<UInt32Brand>, never> { } /** * 32bit unsigned integer. * * @since 1.0.0 * @category Schemas */ export declare const UInt32: $UInt32; //# sourceMappingURL=uInt32.d.ts.map