UNPKG

libmodulor

Version:

A TypeScript library to create platform-agnostic applications

13 lines (12 loc) 230 B
import { TString } from '../base/TString.js'; export class TColor extends TString { tName() { return 'Color'; } example() { return '#000000'; } htmlInputType() { return 'color'; } }