bit-bin
Version:
<a href="https://opensource.org/licenses/Apache-2.0"><img alt="apache" src="https://img.shields.io/badge/License-Apache%202.0-blue.svg"></a> <a href="https://github.com/teambit/bit/blob/master/CONTRIBUTING.md"><img alt="prs" src="https://img.shields.io/b
24 lines (23 loc) • 753 B
TypeScript
import FsHelper from './e2e-fs-helper';
import ScopesData from './e2e-scopes';
export default class BitMapHelper {
scopes: ScopesData;
fs: FsHelper;
constructor(scopes: ScopesData, fsHelper: FsHelper);
read(bitMapPath?: string, withoutComment?: boolean): any;
readWithoutVersion(): any;
write(bitMap: Record<string, any>): void;
delete(): void;
create(cwd?: string, componentObject?: {
'bar/foo': {
files: {
relativePath: string;
test: boolean;
name: string;
}[];
mainFile: string;
origin: string;
};
}, oldBitMapFile?: boolean): void;
printFilesInCaseOfError(files: Record<string, any>[]): string;
}