UNPKG

the-moby-effect

Version:
31 lines 699 B
/** * 64bit 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 UInt64Brand = number & Brand.Brand<"UInt64">; /** * @since 1.0.0 * @category Branded constructors */ export declare const UInt64Brand: Brand.Brand.Constructor<UInt64Brand>; /** * @since 1.0.0 * @category Api interface */ export interface $UInt64 extends Schema.Annotable<$UInt64, UInt64Brand, Brand.Brand.Unbranded<UInt64Brand>, never> { } /** * 64bit unsigned integer. * * @since 1.0.0 * @category Schemas */ export declare const UInt64: $UInt64; //# sourceMappingURL=uInt64.d.ts.map