UNPKG

libmodulor

Version:

A TypeScript library to create platform-agnostic applications

13 lines (12 loc) 248 B
import { TString } from '../base/TString.js'; export class THTML extends TString { tName() { return 'HTML'; } example() { return '<p>This is a paragraph</p>'; } isPotentiallyLong() { return true; } }