UNPKG

@hg8496/energyday-creator

Version:

A tool that create proto buffers from GridVis REST API

12 lines (11 loc) 623 B
import { janitza } from "@hg8496/definitions"; import { IValueDescription } from "@hg8496/gridvis-client/dist/values/IValueDescription"; import { mapInputToProtoBuffer } from "./InputMapper"; import { mapSecondsToProtoBuffer } from "./TimeBaseMapper"; import { mapGridVisToProtoBuffer } from "./ValueMapper"; import IValueStream = janitza.values.IValueStream; export { mapInputToProtoBuffer }; export { mapSecondsToProtoBuffer }; export { mapGridVisToProtoBuffer }; export declare function doesMap(value: IValueDescription): boolean; export declare function mapToValueStream(value: IValueDescription): IValueStream | null;