This commit is contained in:
46
node_modules/geotiff/dist-node/source/client/base.js
generated
vendored
Normal file
46
node_modules/geotiff/dist-node/source/client/base.js
generated
vendored
Normal file
@@ -0,0 +1,46 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.BaseClient = exports.BaseResponse = void 0;
|
||||
class BaseResponse {
|
||||
/**
|
||||
* Returns whether the response has an ok'ish status code
|
||||
*/
|
||||
get ok() {
|
||||
return this.status >= 200 && this.status <= 299;
|
||||
}
|
||||
/**
|
||||
* Returns the status code of the response
|
||||
*/
|
||||
get status() {
|
||||
throw new Error('not implemented');
|
||||
}
|
||||
/**
|
||||
* Returns the value of the specified header
|
||||
* @param {string} headerName the header name
|
||||
* @returns {string} the header value
|
||||
*/
|
||||
getHeader(headerName) {
|
||||
throw new Error('not implemented');
|
||||
}
|
||||
/**
|
||||
* @returns {ArrayBuffer} the response data of the request
|
||||
*/
|
||||
async getData() {
|
||||
throw new Error('not implemented');
|
||||
}
|
||||
}
|
||||
exports.BaseResponse = BaseResponse;
|
||||
class BaseClient {
|
||||
constructor(url) {
|
||||
this.url = url;
|
||||
}
|
||||
/**
|
||||
* Send a request with the options
|
||||
* @param {object} [options]
|
||||
*/
|
||||
async request({ headers, credentials, signal } = {}) {
|
||||
throw new Error('request is not implemented');
|
||||
}
|
||||
}
|
||||
exports.BaseClient = BaseClient;
|
||||
//# sourceMappingURL=base.js.map
|
||||
Reference in New Issue
Block a user