UNPKG

autocolor.js

Version:

Automatically colors your output!

13 lines (12 loc) 310 B
import Keyword from "./Keyword"; export default class Keywords { private static registeredKeywords; /** * Register a new keyword. */ static register(keyword: Keyword): void; /** * Get all registered keywords. */ static getRegistered(): readonly Keyword[]; }