UNPKG

sourcecontrol

Version:

A modern TypeScript CLI application for source control

15 lines 955 B
import { hashObjectCommand } from './hash-object/hash-object'; import { catFileCommand } from './cat-file/cat-file'; import { initCommand } from './init/init'; import { destroyCommand } from './destroy/destroy'; import { lsTreeCommand } from './ls-tree/ls-tree'; import { writeTreeCommand } from './write-tree/write-tree'; import { checkoutTreeCommand } from './checkout-tree/checkout-tree'; import { ignoreCommand } from './ignore/ignore'; import { configCommand } from './config/config'; import { addCommand } from './add/add'; import { statusCommand } from './status/status'; import { commitCommand } from './commit/commit'; import { createSampleCommand } from './create-sample/create-sample'; export { hashObjectCommand, catFileCommand, initCommand, destroyCommand, lsTreeCommand, writeTreeCommand, checkoutTreeCommand, ignoreCommand, configCommand, addCommand, statusCommand, commitCommand, createSampleCommand, }; //# sourceMappingURL=index.d.ts.map