UNPKG

libmodulor

Version:

A TypeScript library to create platform-agnostic applications

13 lines (12 loc) 254 B
import { TString } from '../base/TString.js'; export class TMarkdown extends TString { tName() { return 'Markdown'; } example() { return '**Some important stuff**'; } isPotentiallyLong() { return true; } }