DefinitelyTyped/types/nodegit/remote-callbacks.d.ts
2017-06-09 02:11:48 +01:00

45 lines
721 B
TypeScript

export class RemoteCallbacks {
/**
*
*
* @type {number}
* @memberof RemoteCallbacks
*/
version?: number;
/**
*
*
* @type {Function}
* @memberof RemoteCallbacks
*/
credentials?: Function;
/**
*
*
* @type {Function}
* @memberof RemoteCallbacks
*/
certificateCheck?: Function;
/**
*
*
* @type {Function}
* @memberof RemoteCallbacks
*/
transferProgress?: Function;
/**
*
*
* @type {Function}
* @memberof RemoteCallbacks
*/
transport?: Function;
/**
*
*
* @type {undefined}
* @memberof RemoteCallbacks
*/
payload?: undefined;
}