UNPKG

libmodulor

Version:

A TypeScript library to create platform-agnostic applications

10 lines (9 loc) 278 B
import type { TName } from '../base/TBase.js'; import { TString } from '../base/TString.js'; export type YesNo = 'N' | 'Y'; export declare class TYesNo extends TString<YesNo> { static readonly OPTIONS: YesNo[]; constructor(); tName(): TName; example(): YesNo; }