@gpa-gemstone/application-typings
Version:
Application typings for GPA products
28 lines (27 loc) • 712 B
TypeScript
declare namespace PQBrowser {
namespace Types {
interface TrendChannel {
ID: number;
Name: string;
Description: string;
AssetID: number;
AssetKey: string;
AssetName: string;
MeterID: number;
MeterKey: string;
MeterName: string;
MeterShortName: string;
Phase: string;
ChannelGroup: string;
ChannelGroupType: string;
Unit: string;
}
interface Series {
ID: number;
ChannelID: number;
TypeName: string;
TypeDescription: string;
}
}
}
export default PQBrowser;