mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
33 lines
448 B
TypeScript
33 lines
448 B
TypeScript
import { Oid } from './oid';
|
|
|
|
export class PushUpdate {
|
|
/**
|
|
*
|
|
*
|
|
* @type {string}
|
|
* @memberof PushUpdate
|
|
*/
|
|
srcRefname: string;
|
|
/**
|
|
*
|
|
*
|
|
* @type {string}
|
|
* @memberof PushUpdate
|
|
*/
|
|
dstRefname: string;
|
|
/**
|
|
*
|
|
*
|
|
* @type {Oid}
|
|
* @memberof PushUpdate
|
|
*/
|
|
src: Oid;
|
|
/**
|
|
*
|
|
*
|
|
* @type {Oid}
|
|
* @memberof PushUpdate
|
|
*/
|
|
dst: Oid;
|
|
}
|