UNPKG

libmodulor

Version:

A TypeScript library to create platform-agnostic applications

13 lines (12 loc) 245 B
import { TString } from '../base/TString.js'; export class TCSS extends TString { tName() { return 'CSS'; } example() { return 'body { font-size: 30px; }'; } isPotentiallyLong() { return true; } }