@atomist/sample-sdm
Version:
Sample Atomist automation for software delivery
10 lines (9 loc) • 349 B
TypeScript
import { HandlerContext } from "@atomist/automation-client";
/**
* Find the author name from the given screen name, which
* comes in as a mapped parameter
* @param {HandlerContext} ctx
* @param {string} screenName
* @return {Promise<string>}
*/
export declare function findAuthorName(ctx: HandlerContext, screenName: string): Promise<string>;