UNPKG

libmodulor

Version:

A TypeScript library to create platform-agnostic applications

16 lines (15 loc) 291 B
import { TString } from '../base/TString.js'; export class TPassword extends TString { tName() { return 'Password'; } example() { return 'fmUUNWXazWH4'; } htmlInputType() { return 'password'; } isSensitive() { return true; } }