libmodulor
Version:
A TypeScript library to create platform-agnostic applications
10 lines (9 loc) • 338 B
TypeScript
import type { TName } from '../base/TBase.js';
import { TString, type TStringConstraints } from '../base/TString.js';
export type DirPath = string;
export declare class TDirPath extends TString<DirPath> {
static readonly FORMAT: RegExp;
constructor(constraints?: TStringConstraints);
tName(): TName;
example(): DirPath;
}