@mindconnect/mindconnect-nodejs
Version:
NodeJS Library for MindSphere Connectivity - TypeScript SDK for MindSphere - MindSphere Command Line Interface - MindSphere Development Proxy
24 lines (23 loc) • 694 B
TypeScript
import { Command } from "commander";
import { AssetManagementModels, TimeSeriesBulkModels } from "../../api/sdk";
declare const _default: (program: Command) => void;
export default _default;
export declare type fileInfo = {
entity: string;
propertyset: string;
path: string;
filepath: string;
mintime: Date;
maxtime: Date;
etag?: string;
};
export declare type jobState = {
options: {
size: any;
twintype: AssetManagementModels.TwinType | undefined;
asset: AssetManagementModels.AssetResourceWithHierarchyPath;
};
uploadFiles: fileInfo[];
bulkImports: TimeSeriesBulkModels.BulkImportInput[];
timeSeriesFiles: string[];
};