changesets-gitlab
Version:
[](https://github.com/un-ts/changesets-gitlab/actions/workflows/ci.yml?query=branch%3Amain) [![CodeRabbit Pull Request Revie
12 lines (11 loc) • 646 B
TypeScript
export declare const setupUser: () => Promise<void>;
export declare const pullBranch: (branch: string) => Promise<void>;
export declare const push: (branch: string, { force }?: {
force?: boolean;
}) => Promise<void>;
export declare const pushTags: () => Promise<void>;
export declare const pushTag: (tag: string) => Promise<void>;
export declare const switchToMaybeExistingBranch: (branch: string) => Promise<void>;
export declare const reset: (pathSpec: string, mode?: "hard" | "mixed" | "soft") => Promise<void>;
export declare const commitAll: (message: string) => Promise<void>;
export declare const checkIfClean: () => Promise<boolean>;