UNPKG

@ibm/sourceorbit

Version:

IBM i dependency management tool

19 lines (18 loc) 639 B
export type BuildFiles = "none" | "make" | "bob" | "imd" | "json"; export declare let cliSettings: { cliMode: boolean; infoMessages: boolean; buildFile: BuildFiles; withActions: boolean; fixIncludes: boolean; autoRename: boolean; lookupFiles: string[] | undefined; userBranch: string; makefileWithChildren: boolean; makefileWithParents: boolean; makefileWithParentsChildren: boolean; assumeSourcesArePrograms: boolean; }; export declare function infoOut(message: string): void; export declare function warningOut(message: string): void; export declare function error(message: string): void;