code-story
Version:
Get your code activity log for standup from git
8 lines (7 loc) • 352 B
TypeScript
import { Url } from '@project-types/aliases';
import { BranchCollection } from '@project-types/entities';
/**
* Ensure info about branch entity: remoteBranchName, repositoryUrl;
*/
declare const ensureBranchesCollection: (branchCollection: BranchCollection, repositoryUrl: Url) => Promise<BranchCollection>;
export default ensureBranchesCollection;