/** * Defines how compatible connection points are. */ export declare enum ConnectionPointCompatibilityState { /** Points are compatibles */ Compatible = 0, /** Points are incompatible because of their types */ TypeIncompatible = 1, /** Points are incompatible because of their directions */ DirectionIncompatible = 2, /** Points are incompatible because they are in the same hierarchy **/ HierarchyIssue = 3 } /** * Gets a user friendly message for the given compatibility state. * @param state - Defines the compatibility state * @returns the message associated with a compatibility state. */ export declare function GetCompatibilityIssueMessage(state: ConnectionPointCompatibilityState): string; //# sourceMappingURL=connectionPointCompatibilityState.d.ts.map