notion-enhancer/api/_.cjs
2021-11-07 16:08:22 +11:00

23 lines
769 B
JavaScript

/*
* notion-enhancer core: api
* (c) 2021 dragonwocky <thedragonring.bod@gmail.com> (https://dragonwocky.me/)
* (https://notion-enhancer.github.io/) under the MIT license
*/
'use strict';
/** @module notion-enhancer/api */
module.exports = {
/** environment-specific methods and constants */
env: require('notion-enhancer/api/env.cjs'),
/** environment-specific file reading */
fs: require('notion-enhancer/api/fs.cjs'),
/** environment-specific data persistence */
storage: require('notion-enhancer/api/storage.cjs'),
/** helpers for formatting, validating and parsing values */
fmt: require('notion-enhancer/api/fmt.cjs'),
/** interactions with the enhancer's repository of mods */
registry: require('notion-enhancer/api/registry.cjs'),
};