mapbox-gl
Version:
A WebGL interactive maps library
29 lines (26 loc) • 679 B
JavaScript
// @flow strict
declare module "sinon" {
declare type SpyCall = {
args: Array<mixed>
};
declare type Spy = {
(): any,
calledOnce: number,
getCall(i: number): SpyCall
};
declare type Stub = {
callsFake(fn: mixed): Spy
};
declare class FakeServer {
xhr: XMLHttpRequest
}
declare type Sandbox = {
xhr: {supportsCORS: boolean},
fakeServer: {create: () => FakeServer},
createSandbox(options: mixed): Sandbox,
stub(obj?: mixed, prop?: string): Stub,
spy(obj?: mixed, prop?: string): Spy,
restore(): void;
};
declare module.exports: Sandbox;
}