DefinitelyTyped/types/nodegit/rebase-operation.d.ts
2017-06-07 00:27:58 +01:00

19 lines
296 B
TypeScript

import { Oid } from './oid';
export namespace RebaseOperation {
enum REBASE_OPERATION {
PICK = 0,
REWORD = 1,
EDIT = 2,
SQUASH = 3,
FIXUP = 4,
EXEC = 5
}
}
export class RebaseOperation {
type: number;
id: Oid;
exec: string;
}