UNPKG

t-comm

Version:

专业、稳定、纯粹的工具库

21 lines (20 loc) 676 B
export declare function createMRNote({ privateToken, gitApiPrefix, projectName, mrId, body, path, line, lineType, risk, resolveState, notifyEnabled, }: { privateToken: string; gitApiPrefix: string; projectName: string; mrId: string | number; body: any; path: string; line: number; lineType?: string; risk?: 0 | 1 | 2 | 3; resolveState?: 0 | 1 | 2; notifyEnabled?: boolean; }): Promise<unknown>; export declare function createMRComment({ projectName, mrId, data, privateToken, gitApiPrefix, }: { projectName: string; mrId: string | number; data: any; privateToken: string; gitApiPrefix: string; }): Promise<any>;