UNPKG

422 BTypeScriptView Raw
1/**
2 * Interface that can be implemented by CodeTransform parameters that can suggest the mode
3 * to present changes to users.
4 */
5export interface TransformModeSuggestion {
6 desiredBranchName: string;
7 desiredPullRequestTitle?: string;
8 desiredCommitMessage?: string;
9}
10export declare function isTransformModeSuggestion(p: any): p is TransformModeSuggestion;
11//# sourceMappingURL=TransformModeSuggestion.d.ts.map
\No newline at end of file