@beignet/core
Version:
Core framework primitives for Beignet
14 lines • 414 B
JavaScript
/**
* Provider system for Beignet
*
* Providers are modular extensions that can add new ports or replace existing ones
* during application initialization. They support configuration via Standard Schema
* and optional lifecycle hooks.
*/
export function createProvider(def) {
if (def === undefined) {
return (definition) => definition;
}
return def;
}
//# sourceMappingURL=provider.js.map