@node-in-layers/core
Version:
The core library for the Node In Layers rapid web development framework.
12 lines (11 loc) • 404 B
TypeScript
import { CommonContext, CoreNamespace, FeaturesContext, LayerServices, LayerServicesLayer } from './types.js';
declare const name = CoreNamespace.layers;
declare const services: {
create: () => LayerServices;
};
declare const features: {
create: (context: CommonContext & LayerServicesLayer) => {
loadLayers: () => Promise<FeaturesContext>;
};
};
export { name, services, features };