@fabrix/spool-repl
Version:
Spool - REPL for Fabrix
35 lines (34 loc) • 762 B
TypeScript
export declare const TreeBuilder: {
getSpoolTree(spools: any): {
label: string;
nodes: string[];
};
getApiTree(api: any): {
label: string;
nodes: {
label: string;
nodes: any;
}[];
};
getModelTree(models: any): {
label: string;
nodes: any;
};
getResolverTree(resolvers: any): {
label: string;
nodes: any;
};
getPoliciesTree(policies: any): string[];
getControllerTree(controllers: any): {
label: string;
nodes: any;
};
getServiceTree(services: any): {
label: string;
nodes: any;
};
getOtherTree(others: any, name?: string): {
label: string;
nodes: any;
};
};