libmodulor
Version:
A TypeScript library to create platform-agnostic applications
11 lines (10 loc) • 350 B
TypeScript
import type { TName } from '../base/TBase.js';
import { TString } from '../base/TString.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;
isSensitive(): boolean;
}