libmodulor
Version:
A TypeScript library to create platform-agnostic applications
13 lines (12 loc) • 453 B
TypeScript
import type { TName } from '../base/TBase.js';
import { TString } from '../base/TString.js';
import type { JSONSchemaType } from '../targets/json-schema.js';
import type { HTMLInputType } from '../targets/web.js';
export type Password = string;
export declare class TPassword extends TString<Password> {
tName(): TName;
example(): Password;
htmlInputType(): HTMLInputType;
jsonSchemaType(): JSONSchemaType;
isSensitive(): boolean;
}