export interface EntryPointConfig<
ROut,
> {
/**
* ROut should be inferred from requirements
* provided by the layers
*/
readonly services: [Layer.Layer<ROut, any, any>];
readonly routes: Route<ROut>[];
/**
* Instead they are getting inferred
* from the requirements of the views
*/
readonly views: View<ROut>[];
}
export interface EntryPointConfig<
ROut,
> {
/**
* ROut should be inferred from requirements
* provided by the layers
*/
readonly services: [Layer.Layer<ROut, any, any>];
readonly routes: Route<ROut>[];
/**
* Instead they are getting inferred
* from the requirements of the views
*/
readonly views: View<ROut>[];
}