mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
45 lines
721 B
TypeScript
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;
|
|
}
|