@atomist/sdm-pack-aspect
Version:
an Atomist SDM Extension Pack for visualizing drift across an organization
29 lines • 829 B
TypeScript
import { Analyzer, SpiderResult } from "./Spider";
export interface SpiderAppOptions {
source: "GitHub" | "local";
localDirectory?: string;
owner?: string;
/**
* If this is set, clone under this directory on the local drive
*/
cloneUnder?: string;
/**
* Refine name in GitHub search if searching for repos
*/
search?: string;
/**
* If this is supplied, run a custom GitHub query
*/
query?: string;
workspaceId: string;
/**
* Update existing analyses for the same sha?
* Take care to set this to false if the spider code has been updated
*/
update?: boolean;
}
/**
* Spider a GitHub.com org
*/
export declare function spider(params: SpiderAppOptions, analyzer: Analyzer): Promise<SpiderResult>;
//# sourceMappingURL=spiderCall.d.ts.map