mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-07 22:19:02 +00:00
23 lines
725 B
JavaScript
23 lines
725 B
JavaScript
/*
|
|
* notion-enhancer: 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 */
|
|
|
|
/** environment-specific methods and constants */
|
|
export * as env from './env.mjs';
|
|
/** helpers for formatting or parsing text */
|
|
export * as fmt from './fmt.mjs';
|
|
/** environment-specific filesystem reading */
|
|
export * as fs from './fs.mjs';
|
|
/** pattern validators */
|
|
export * as regex from './regex.mjs';
|
|
/** interactions with the enhancer's repository of mods */
|
|
// export * as registry from './registry.mjs';
|
|
/** environment-specific data persistence */
|
|
export * as storage from './storage.mjs';
|