UNPKG

libmodulor

Version:

A TypeScript library to create platform-agnostic applications

16 lines (15 loc) 303 B
import { TString } from '../base/TString.js'; export class TApiKey extends TString { tName() { return 'ApiKey'; } example() { return 'pk_bxa2HCdsT7CKwVSdem8fjS8rW'; } htmlInputType() { return 'password'; } isSensitive() { return true; } }