@types/sparql-http-client
Version:
TypeScript definitions for sparql-http-client
12 lines (8 loc) • 302 B
TypeScript
import { Query } from "./index.js";
import SimpleClient from "./SimpleClient.js";
interface RawQuery extends Query<Promise<Response>, Promise<Response>, Promise<Response>, Promise<Response>> {
}
declare class RawQuery {
constructor(options: { client: SimpleClient });
}
export default RawQuery;