1declare interface AlignRuleOption { 2 /** 3 * The param of left align. 4 * 5 * @type { ?object } 6 * @syscap SystemCapability.ArkUI.ArkUI.Full 7 * @since 9 8 * @form 9 */ 10 /** 11 * The param of left align. 12 * 13 * @type { ?object } 14 * @syscap SystemCapability.ArkUI.ArkUI.Full 15 * @crossplatform 16 * @since 10 17 * @form 18 */ 19 /** 20 * The param of left align. 21 * 22 * @type { ?object } 23 * @syscap SystemCapability.ArkUI.ArkUI.Full 24 * @crossplatform 25 * @atomicservice 26 * @since 11 27 * @form 28 */ 29 left?: { anchor: string; align: HorizontalAlign }; 30}