UNPKG

gitquick

Version:

Git Add, Commit, and Push on the Fly

13 lines 372 B
/** * Set debug mode * @param enabled - Enable debug mode */ declare const setDebugMode: (enabled: boolean) => void; /** * Main entry point - executes the complete git workflow * @param message - Commit message */ declare const runGitQuick: (message: string) => Promise<void>; export default runGitQuick; export { setDebugMode }; //# sourceMappingURL=runner.d.ts.map