@atomist/sdm-pack-aspect
Version:
an Atomist SDM Extension Pack for visualizing drift across an organization
18 lines • 527 B
TypeScript
import { Aspect } from "@atomist/sdm-pack-fingerprints";
export declare const CodeOfConductType = "code-of-conduct";
export interface CodeOfConductData {
/**
* Content of the code of conduct
*/
content: string;
/**
* Title inferred from the code of conduct, if it was possible to do so
*/
title?: string;
}
/**
* Find a code of conduct in a repository if possible
* @constructor
*/
export declare const CodeOfConduct: Aspect<CodeOfConductData>;
//# sourceMappingURL=codeOfConduct.d.ts.map