@ibm/sourceorbit
Version:
IBM i dependency management tool
15 lines (14 loc) • 547 B
TypeScript
import { ObjectType } from "../targets";
import { CommandParameters, CompileAttribute } from "./environment";
export declare class iProject {
includePaths?: string[];
compiles?: CompileAttribute;
objectAttributes?: {
[object: string]: CommandParameters;
};
binders?: string[];
constructor();
getCompileDataForType(type: ObjectType): import("./environment").CompileData;
getCompileDataForSource(relativePath: string): import("./environment").CompileData;
applySettings(input: Partial<iProject>): void;
}