UNPKG

@zowe/provisioning-for-zowe-sdk

Version:

Zowe SDK to interact with the z/OS provisioning APIs

20 lines 409 B
/** * Interface for property objects. * @export * @interface IPropertiesInput */ export interface IPropertiesInput { /** * Name of the property. * @type {string} * @memberof IPropertiesInput */ name: string; /** * Value of the property. * @type {string} * @memberof IPropertiesInput */ value: string; } //# sourceMappingURL=IPropertiesInput.d.ts.map