mono/packages/discourse/dist/index.js
2025-12-30 20:21:59 +01:00

12 lines
591 B
JavaScript

export * from './constants.js';
export * from './types.js';
export * from './lib/index.js';
export * from './lib/oa/types.js';
import { logger as _logger } from '@polymech/core/debug';
import { MODULE_NAME } from './constants';
export { Logger } from 'tslog';
let loggers = {};
export const logger = _logger(MODULE_NAME);
import { substitute as _substitute, substituteAlt as _substituteAlt } from "@polymech/core/strings";
export const substitute = (alt, template, vars = {}) => alt ? _substituteAlt(template, vars) : _substitute(template, vars);
//# sourceMappingURL=index.js.map