generator-jhipster
Version:
Spring Boot + Angular/React/Vue in one handy generator
18 lines (17 loc) • 525 B
TypeScript
export type InfoFile = {
filename: string;
content: string;
type: 'jdl' | 'yo-rc' | 'entity-jdl' | 'json';
};
export type InfoData = {
yoRcContent?: string;
jdlDefinitions?: string;
jdlApplications?: number;
jdlEntitiesDefinitions?: string;
yoRcBlank: boolean;
yoRcValid?: boolean;
files: InfoFile[];
workspacesFolders?: string[];
};
export declare const filterData: ({ files, ...data }: InfoData) => InfoData;
export declare const extractDataFromInfo: (info: string) => InfoData;