libmodulor
Version:
A TypeScript library to create platform-agnostic applications
11 lines (10 loc) • 453 B
TypeScript
import type { TName } from '../base/TBase.js';
import { TNumber, type TNumberConstraints } from '../base/TNumber.js';
import type { UIntQuantity } from './TUIntQuantity.js';
export type Percentage = number;
export declare class TPercentage extends TNumber {
constructor(constraints?: TNumberConstraints<number>, decimalsCount?: UIntQuantity);
tName(): TName;
example(): Percentage;
fmt(ifNullOrUndefined?: string | undefined): string;
}