the-moby-effect
Version:
Moby/Docker API client built using effect-ts
31 lines • 699 B
TypeScript
/**
* 16bit 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 UInt16Brand = number & Brand.Brand<"UInt16">;
/**
* @since 1.0.0
* @category Branded constructors
*/
export declare const UInt16Brand: Brand.Brand.Constructor<UInt16Brand>;
/**
* @since 1.0.0
* @category Api interface
*/
export interface $UInt16 extends Schema.Annotable<$UInt16, UInt16Brand, Brand.Brand.Unbranded<UInt16Brand>, never> {
}
/**
* 16bit unsigned integer.
*
* @since 1.0.0
* @category Schemas
*/
export declare const UInt16: $UInt16;
//# sourceMappingURL=uInt16.d.ts.map