libmodulor
Version:
A TypeScript library to create platform-agnostic applications
19 lines (18 loc) • 375 B
JavaScript
import { TString } from '../base/TString.js';
export class TPassword extends TString {
tName() {
return 'Password';
}
example() {
return 'fmUUNWXazWH4';
}
htmlInputType() {
return 'password';
}
jsonSchemaType() {
return { format: 'password', type: 'string' };
}
isSensitive() {
return true;
}
}