@jdlinker/linker
Version:
jdLinker 系统模块
21 lines (19 loc) • 500 B
TypeScript
export interface ConfigurationType {
port: string | undefined;
host: string | undefined;
username: string;
password: string;
endpoint: string;
securityPolicy: string | undefined;
securityMode: string | undefined;
certId: string | undefined;
authType: string | undefined;
deviceId: string | undefined;
deviceName: string | undefined;
}
export interface FormDataType {
name: string;
provider: string | undefined;
configuration: ConfigurationType;
description?: string;
}