UNPKG

sharec-utils

Version:
25 lines (21 loc) 443 B
const format = require('./format') const fs = require('./fs') const map = require('./map') const std = require('./std') const path = require('./path') /** * @typedef {object} FormattingRules * @property {'space' | 'tab'} [indentType] * @property {number} [indentSize] * @property {boolean} [eof] */ /** * @typedef {{ [x: string]: FormattingRules }} MappedFormattingRules */ module.exports = { format, fs, map, std, path, }