mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-02-06 17:02:53 +00:00
16 lines
367 B
TypeScript
16 lines
367 B
TypeScript
import { QueryInit, Query } from '.';
|
|
|
|
declare namespace RawQuery {
|
|
type RawQuery = Query<Response, Response, Response, Response>;
|
|
}
|
|
|
|
// tslint:disable-next-line no-empty-interface
|
|
interface RawQuery extends RawQuery.RawQuery {}
|
|
|
|
// tslint:disable-next-line no-unnecessary-class
|
|
declare class RawQuery {
|
|
constructor(options: QueryInit);
|
|
}
|
|
|
|
export = RawQuery;
|