Interface Blueprint

interface Blueprint {
    name: string;
    resources: Record<string, Resource>;
    routes: Route[];
}

Properties

Properties

name: string
resources: Record<string, Resource>
routes: Route[]