mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-07 05:59:02 +00:00
23 lines
769 B
JavaScript
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'),
|
|
};
|