libmodulor
Version:
A TypeScript library to create platform-agnostic applications
10 lines (9 loc) • 362 B
TypeScript
import type { TName } from '../base/TBase.js';
import { TUInt, type TUIntConstraints, type UInt } from '../base/TUInt.js';
export type HostPort = UInt;
export declare class THostPort extends TUInt<HostPort> {
constructor(constraints?: TUIntConstraints);
tName(): TName;
example(): HostPort;
fmt(ifNullOrUndefined?: string | undefined): string;
}