mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
19 lines
302 B
TypeScript
19 lines
302 B
TypeScript
import { Oid } from './oid';
|
|
|
|
export namespace RebaseOperation {
|
|
const enum REBASE_OPERATION {
|
|
PICK = 0,
|
|
REWORD = 1,
|
|
EDIT = 2,
|
|
SQUASH = 3,
|
|
FIXUP = 4,
|
|
EXEC = 5
|
|
}
|
|
}
|
|
|
|
export class RebaseOperation {
|
|
type: number;
|
|
id: Oid;
|
|
exec: string;
|
|
}
|