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