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