UNPKG

the-moby-effect

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