mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-06 05:29:02 +00:00
26 lines
839 B
JavaScript
26 lines
839 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';
|
|
/** environment-specific filesystem reading */
|
|
export * as fs from './fs.mjs';
|
|
/** environment-specific data persistence */
|
|
export * as storage from './storage.mjs';
|
|
|
|
/** helpers for formatting, validating and parsing values */
|
|
export * as fmt from './fmt.mjs';
|
|
/** interactions with the enhancer's repository of mods */
|
|
export * as registry from './registry.mjs';
|
|
/** helpers for manipulation of a webpage */
|
|
export * as web from './web.mjs';
|
|
/** shared notion-style elements */
|
|
export * as components from './components/_.mjs';
|