UNPKG

libmodulor

Version:

A TypeScript library to create platform-agnostic applications

11 lines (10 loc) 352 B
import type { TName } from '../base/TBase.js'; import { TString } from '../base/TString.js'; import type { Validation } from '../Validation.js'; export type JSONString = string; export declare class TJSONString extends TString<JSONString> { tName(): TName; example(): JSONString; isPotentiallyLong(): boolean; validate(): Validation; }