@storm-stack/plugin-system
Version:
A library used to create and manage a plugin-styled architecture in a TypeScript application.
14 lines (13 loc) • 370 B
TypeScript
/**
* The plugin-system library used by Storm Software for building TypeScript applications.
*
* @remarks
* A library used to create and manage a plugin-styled architecture in a TypeScript application
*
* @packageDocumentation
*/
export * from "./errors";
export * from "./loader";
export * from "./manager";
export * from "./types";
export * from "./utilities";