UNPKG

barecheck

Version:
8 lines (7 loc) 409 B
export declare const parseLcovFile: (coverageFilePath: string) => Promise<{ lcovData: import("./types").TLcovData[]; data: import("./types").TGroupedLinesLcovData[]; percentage: number; }>; export declare const fetchCoverage: (apiKey: string, ref: string) => Promise<number>; export declare const sendCoverage: (apiKey: string, totalCoverage: number, ref: string, sha: string) => Promise<number>;