mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
13 lines
363 B
TypeScript
13 lines
363 B
TypeScript
import { RemoteCallbacks } from './remote-callbacks';
|
|
import { Strarray } from './str-array';
|
|
import { ProxyOptions } from './proxy-options';
|
|
|
|
export interface PushOptions {
|
|
version?: number;
|
|
pbParallelism?: number;
|
|
callbacks?: RemoteCallbacks;
|
|
customHeaders?: Strarray | string | string[];
|
|
proxyOpts?: ProxyOptions;
|
|
[key: string]: any;
|
|
}
|