@angstone/monostone
Version:
monolitic event-sourced framework
12 lines (11 loc) • 328 B
TypeScript
import { IViewLoaded } from "../interfaces";
export declare function createView(viewRecipe: {
featureName: string;
featurePath: string;
viewName: string;
}): IViewLoaded;
export declare function createViews(viewsRecipe: {
featureName: string;
viewNames: string[];
featurePath: string;
}): IViewLoaded[];