@studyportals/sp-r2d2
Version:
A framework that contains various components used when developing projects that will be deployed via AWS λ.
18 lines (17 loc) • 500 B
TypeScript
import { IApiRequest } from '../requests-interfaces/i-api-request.interface';
import { BaseRequest } from './base-request.class';
export declare class BaseApiRequest extends BaseRequest implements IApiRequest {
readonly headers: {
[key: string]: any;
};
readonly pathParameters: {
[key: string]: any;
};
constructor(data?: {
[key: string]: any;
}, headers?: {
[key: string]: any;
}, pathParameters?: {
[key: string]: any;
});
}