@citrineos/base
Version:
The base module for OCPP v2.0.1 including all interfaces. This module is not intended to be used directly, but rather as a dependency for other modules.
17 lines (16 loc) • 694 B
TypeScript
export declare enum HttpMethod {
Get = "GET",
Put = "PUT",
Post = "POST",
Patch = "PATCH",
Delete = "DELETE"
}
export declare const METADATA_MESSAGE_ENDPOINTS = "METADATA_MESSAGE_ENDPOINTS";
export declare const METADATA_DATA_ENDPOINTS = "METADATA_DATA_ENDPOINTS";
export { AbstractModuleApi } from './AbstractModuleApi';
export { AsDataEndpoint } from './AsDataEndpoint';
export { AsMessageEndpoint } from './AsMessageEndpoint';
export { IDataEndpointDefinition } from './DataEndpointDefinition';
export { IMessageEndpointDefinition } from './MessageEndpointDefinition';
export { IMessageQuerystring } from './MessageQuerystring';
export { IModuleApi } from './ModuleApi';