libmodulor
Version:
A TypeScript library to create platform-agnostic applications
10 lines (9 loc) • 310 B
TypeScript
import type { TName } from '../base/TBase.js';
import { TString } from '../base/TString.js';
import type { HTMLInputType } from '../targets/web.js';
export type Color = string;
export declare class TColor extends TString<Color> {
tName(): TName;
example(): Color;
htmlInputType(): HTMLInputType;
}