UNPKG

estilo

Version:

Create color schemes for Vim, NeoVim, Airline and Lightline

21 lines (20 loc) 680 B
import { Eta as EtaCore } from "./core.js"; import { readFile, resolvePath } from "./file-handling.js"; export { EtaError, EtaFileResolutionError, EtaNameResolutionError, EtaParseError, EtaRuntimeError, } from "./err.js"; export class Eta extends EtaCore { constructor() { super(...arguments); Object.defineProperty(this, "readFile", { enumerable: true, configurable: true, writable: true, value: readFile }); Object.defineProperty(this, "resolvePath", { enumerable: true, configurable: true, writable: true, value: resolvePath }); } }