UNPKG

134 BTypeScriptView Raw
1import { Oid } from './oid';
2
3export class PushUpdate {
4 srcRefname: string;
5 dstRefname: string;
6 src: Oid;
7 dst: Oid;
8}