161847f8eSopenharmony_ci/*
261847f8eSopenharmony_ci * Copyright (c) 2021-2023 Huawei Device Co., Ltd.
361847f8eSopenharmony_ci * Licensed under the Apache License, Version 2.0 (the "License");
461847f8eSopenharmony_ci * you may not use this file except in compliance with the License.
561847f8eSopenharmony_ci * You may obtain a copy of the License at
661847f8eSopenharmony_ci *
761847f8eSopenharmony_ci *     http://www.apache.org/licenses/LICENSE-2.0
861847f8eSopenharmony_ci *
961847f8eSopenharmony_ci * Unless required by applicable law or agreed to in writing, software
1061847f8eSopenharmony_ci * distributed under the License is distributed on an "AS IS" BASIS,
1161847f8eSopenharmony_ci * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1261847f8eSopenharmony_ci * See the License for the specific language governing permissions and
1361847f8eSopenharmony_ci * limitations under the License.
1461847f8eSopenharmony_ci */
1561847f8eSopenharmony_ci
1661847f8eSopenharmony_ci/**
1761847f8eSopenharmony_ci * @file
1861847f8eSopenharmony_ci * @kit ArkUI
1961847f8eSopenharmony_ci */
2061847f8eSopenharmony_ci
2161847f8eSopenharmony_ci/**
2261847f8eSopenharmony_ci * Viewport bounding box.
2361847f8eSopenharmony_ci *
2461847f8eSopenharmony_ci * @interface ViewportRect
2561847f8eSopenharmony_ci * @syscap SystemCapability.ArkUI.ArkUI.Full
2661847f8eSopenharmony_ci * @crossplatform
2761847f8eSopenharmony_ci * @form
2861847f8eSopenharmony_ci * @atomicservice
2961847f8eSopenharmony_ci * @since 14
3061847f8eSopenharmony_ci */
3161847f8eSopenharmony_cideclare interface ViewportRect {
3261847f8eSopenharmony_ci  /**
3361847f8eSopenharmony_ci   * Viewport X coordinate.
3461847f8eSopenharmony_ci   *
3561847f8eSopenharmony_ci   * @type { ?(number | string) }
3661847f8eSopenharmony_ci   * @syscap SystemCapability.ArkUI.ArkUI.Full
3761847f8eSopenharmony_ci   * @since 7
3861847f8eSopenharmony_ci   */
3961847f8eSopenharmony_ci  /**
4061847f8eSopenharmony_ci   * Viewport X coordinate.
4161847f8eSopenharmony_ci   *
4261847f8eSopenharmony_ci   * @type { ?(number | string) }
4361847f8eSopenharmony_ci   * @syscap SystemCapability.ArkUI.ArkUI.Full
4461847f8eSopenharmony_ci   * @form
4561847f8eSopenharmony_ci   * @since 9
4661847f8eSopenharmony_ci   */
4761847f8eSopenharmony_ci  /**
4861847f8eSopenharmony_ci   * Viewport X coordinate.
4961847f8eSopenharmony_ci   *
5061847f8eSopenharmony_ci   * @type { ?(number | string) }
5161847f8eSopenharmony_ci   * @syscap SystemCapability.ArkUI.ArkUI.Full
5261847f8eSopenharmony_ci   * @crossplatform
5361847f8eSopenharmony_ci   * @form
5461847f8eSopenharmony_ci   * @since 10
5561847f8eSopenharmony_ci   */
5661847f8eSopenharmony_ci  /**
5761847f8eSopenharmony_ci   * Viewport X coordinate.
5861847f8eSopenharmony_ci   *
5961847f8eSopenharmony_ci   * @type { ?(number | string) }
6061847f8eSopenharmony_ci   * @syscap SystemCapability.ArkUI.ArkUI.Full
6161847f8eSopenharmony_ci   * @crossplatform
6261847f8eSopenharmony_ci   * @form
6361847f8eSopenharmony_ci   * @atomicservice
6461847f8eSopenharmony_ci   * @since 11
6561847f8eSopenharmony_ci   */
6661847f8eSopenharmony_ci  x?: number | string;
6761847f8eSopenharmony_ci
6861847f8eSopenharmony_ci  /**
6961847f8eSopenharmony_ci   * Viewport Y coordinate.
7061847f8eSopenharmony_ci   *
7161847f8eSopenharmony_ci   * @type { ?(number | string) }
7261847f8eSopenharmony_ci   * @syscap SystemCapability.ArkUI.ArkUI.Full
7361847f8eSopenharmony_ci   * @since 7
7461847f8eSopenharmony_ci   */
7561847f8eSopenharmony_ci  /**
7661847f8eSopenharmony_ci   * Viewport Y coordinate.
7761847f8eSopenharmony_ci   *
7861847f8eSopenharmony_ci   * @type { ?(number | string) }
7961847f8eSopenharmony_ci   * @syscap SystemCapability.ArkUI.ArkUI.Full
8061847f8eSopenharmony_ci   * @form
8161847f8eSopenharmony_ci   * @since 9
8261847f8eSopenharmony_ci   */
8361847f8eSopenharmony_ci  /**
8461847f8eSopenharmony_ci   * Viewport Y coordinate.
8561847f8eSopenharmony_ci   *
8661847f8eSopenharmony_ci   * @type { ?(number | string) }
8761847f8eSopenharmony_ci   * @syscap SystemCapability.ArkUI.ArkUI.Full
8861847f8eSopenharmony_ci   * @crossplatform
8961847f8eSopenharmony_ci   * @form
9061847f8eSopenharmony_ci   * @since 10
9161847f8eSopenharmony_ci   */
9261847f8eSopenharmony_ci  /**
9361847f8eSopenharmony_ci   * Viewport Y coordinate.
9461847f8eSopenharmony_ci   *
9561847f8eSopenharmony_ci   * @type { ?(number | string) }
9661847f8eSopenharmony_ci   * @syscap SystemCapability.ArkUI.ArkUI.Full
9761847f8eSopenharmony_ci   * @crossplatform
9861847f8eSopenharmony_ci   * @form
9961847f8eSopenharmony_ci   * @atomicservice
10061847f8eSopenharmony_ci   * @since 11
10161847f8eSopenharmony_ci   */
10261847f8eSopenharmony_ci  y?: number | string;
10361847f8eSopenharmony_ci
10461847f8eSopenharmony_ci  /**
10561847f8eSopenharmony_ci   * Viewport width.
10661847f8eSopenharmony_ci   *
10761847f8eSopenharmony_ci   * @type { ?(number | string) }
10861847f8eSopenharmony_ci   * @syscap SystemCapability.ArkUI.ArkUI.Full
10961847f8eSopenharmony_ci   * @since 7
11061847f8eSopenharmony_ci   */
11161847f8eSopenharmony_ci  /**
11261847f8eSopenharmony_ci   * Viewport width.
11361847f8eSopenharmony_ci   *
11461847f8eSopenharmony_ci   * @type { ?(number | string) }
11561847f8eSopenharmony_ci   * @syscap SystemCapability.ArkUI.ArkUI.Full
11661847f8eSopenharmony_ci   * @form
11761847f8eSopenharmony_ci   * @since 9
11861847f8eSopenharmony_ci   */
11961847f8eSopenharmony_ci  /**
12061847f8eSopenharmony_ci   * Viewport width.
12161847f8eSopenharmony_ci   *
12261847f8eSopenharmony_ci   * @type { ?(number | string) }
12361847f8eSopenharmony_ci   * @syscap SystemCapability.ArkUI.ArkUI.Full
12461847f8eSopenharmony_ci   * @crossplatform
12561847f8eSopenharmony_ci   * @form
12661847f8eSopenharmony_ci   * @since 10
12761847f8eSopenharmony_ci   */
12861847f8eSopenharmony_ci  /**
12961847f8eSopenharmony_ci   * Viewport width.
13061847f8eSopenharmony_ci   *
13161847f8eSopenharmony_ci   * @type { ?(number | string) }
13261847f8eSopenharmony_ci   * @syscap SystemCapability.ArkUI.ArkUI.Full
13361847f8eSopenharmony_ci   * @crossplatform
13461847f8eSopenharmony_ci   * @form
13561847f8eSopenharmony_ci   * @atomicservice
13661847f8eSopenharmony_ci   * @since 11
13761847f8eSopenharmony_ci   */
13861847f8eSopenharmony_ci  width?: number | string;
13961847f8eSopenharmony_ci
14061847f8eSopenharmony_ci  /**
14161847f8eSopenharmony_ci   * Viewport height.
14261847f8eSopenharmony_ci   *
14361847f8eSopenharmony_ci   * @type { ?(number | string) }
14461847f8eSopenharmony_ci   * @syscap SystemCapability.ArkUI.ArkUI.Full
14561847f8eSopenharmony_ci   * @since 7
14661847f8eSopenharmony_ci   */
14761847f8eSopenharmony_ci  /**
14861847f8eSopenharmony_ci   * Viewport height.
14961847f8eSopenharmony_ci   *
15061847f8eSopenharmony_ci   * @type { ?(number | string) }
15161847f8eSopenharmony_ci   * @syscap SystemCapability.ArkUI.ArkUI.Full
15261847f8eSopenharmony_ci   * @form
15361847f8eSopenharmony_ci   * @since 9
15461847f8eSopenharmony_ci   */
15561847f8eSopenharmony_ci  /**
15661847f8eSopenharmony_ci   * Viewport height.
15761847f8eSopenharmony_ci   *
15861847f8eSopenharmony_ci   * @type { ?(number | string) }
15961847f8eSopenharmony_ci   * @syscap SystemCapability.ArkUI.ArkUI.Full
16061847f8eSopenharmony_ci   * @crossplatform
16161847f8eSopenharmony_ci   * @form
16261847f8eSopenharmony_ci   * @since 10
16361847f8eSopenharmony_ci   */
16461847f8eSopenharmony_ci  /**
16561847f8eSopenharmony_ci   * Viewport height.
16661847f8eSopenharmony_ci   *
16761847f8eSopenharmony_ci   * @type { ?(number | string) }
16861847f8eSopenharmony_ci   * @syscap SystemCapability.ArkUI.ArkUI.Full
16961847f8eSopenharmony_ci   * @crossplatform
17061847f8eSopenharmony_ci   * @form
17161847f8eSopenharmony_ci   * @atomicservice
17261847f8eSopenharmony_ci   * @since 11
17361847f8eSopenharmony_ci   */
17461847f8eSopenharmony_ci  height?: number | string
17561847f8eSopenharmony_ci}
17661847f8eSopenharmony_ci
17761847f8eSopenharmony_ci/**
17861847f8eSopenharmony_ci * Provides interfaces for drawing components.
17961847f8eSopenharmony_ci *
18061847f8eSopenharmony_ci * @interface ShapeInterface
18161847f8eSopenharmony_ci * @syscap SystemCapability.ArkUI.ArkUI.Full
18261847f8eSopenharmony_ci * @since 7
18361847f8eSopenharmony_ci */
18461847f8eSopenharmony_ci/**
18561847f8eSopenharmony_ci * Provides interfaces for drawing components.
18661847f8eSopenharmony_ci *
18761847f8eSopenharmony_ci * @interface ShapeInterface
18861847f8eSopenharmony_ci * @syscap SystemCapability.ArkUI.ArkUI.Full
18961847f8eSopenharmony_ci * @form
19061847f8eSopenharmony_ci * @since 9
19161847f8eSopenharmony_ci */
19261847f8eSopenharmony_ci/**
19361847f8eSopenharmony_ci * Provides interfaces for drawing components.
19461847f8eSopenharmony_ci *
19561847f8eSopenharmony_ci * @interface ShapeInterface
19661847f8eSopenharmony_ci * @syscap SystemCapability.ArkUI.ArkUI.Full
19761847f8eSopenharmony_ci * @crossplatform
19861847f8eSopenharmony_ci * @form
19961847f8eSopenharmony_ci * @since 10
20061847f8eSopenharmony_ci */
20161847f8eSopenharmony_ci/**
20261847f8eSopenharmony_ci * Provides interfaces for drawing components.
20361847f8eSopenharmony_ci *
20461847f8eSopenharmony_ci * @interface ShapeInterface
20561847f8eSopenharmony_ci * @syscap SystemCapability.ArkUI.ArkUI.Full
20661847f8eSopenharmony_ci * @crossplatform
20761847f8eSopenharmony_ci * @form
20861847f8eSopenharmony_ci * @atomicservice
20961847f8eSopenharmony_ci * @since 11
21061847f8eSopenharmony_ci */
21161847f8eSopenharmony_ciinterface ShapeInterface {
21261847f8eSopenharmony_ci  /**
21361847f8eSopenharmony_ci   * Use the new function to create Shape.
21461847f8eSopenharmony_ci   *
21561847f8eSopenharmony_ci   * @syscap SystemCapability.ArkUI.ArkUI.Full
21661847f8eSopenharmony_ci   * @since 7
21761847f8eSopenharmony_ci   */
21861847f8eSopenharmony_ci  /**
21961847f8eSopenharmony_ci   * Use the new function to create Shape.
22061847f8eSopenharmony_ci   *
22161847f8eSopenharmony_ci   * @syscap SystemCapability.ArkUI.ArkUI.Full
22261847f8eSopenharmony_ci   * @crossplatform
22361847f8eSopenharmony_ci   * @since 10
22461847f8eSopenharmony_ci   */
22561847f8eSopenharmony_ci  /**
22661847f8eSopenharmony_ci   * Use the new function to create Shape.
22761847f8eSopenharmony_ci   *
22861847f8eSopenharmony_ci   * @syscap SystemCapability.ArkUI.ArkUI.Full
22961847f8eSopenharmony_ci   * @crossplatform
23061847f8eSopenharmony_ci   * @atomicservice
23161847f8eSopenharmony_ci   * @since 11
23261847f8eSopenharmony_ci   */
23361847f8eSopenharmony_ci  new (value?: PixelMap): ShapeAttribute;
23461847f8eSopenharmony_ci
23561847f8eSopenharmony_ci  /**
23661847f8eSopenharmony_ci   * Called when a component is drawn.
23761847f8eSopenharmony_ci   *
23861847f8eSopenharmony_ci   * @param { PixelMap } value
23961847f8eSopenharmony_ci   * @returns { ShapeAttribute }
24061847f8eSopenharmony_ci   * @syscap SystemCapability.ArkUI.ArkUI.Full
24161847f8eSopenharmony_ci   * @since 7
24261847f8eSopenharmony_ci   */
24361847f8eSopenharmony_ci  /**
24461847f8eSopenharmony_ci   * Called when a component is drawn.
24561847f8eSopenharmony_ci   *
24661847f8eSopenharmony_ci   * @param { PixelMap } value
24761847f8eSopenharmony_ci   * @returns { ShapeAttribute }
24861847f8eSopenharmony_ci   * @syscap SystemCapability.ArkUI.ArkUI.Full
24961847f8eSopenharmony_ci   * @crossplatform
25061847f8eSopenharmony_ci   * @since 10
25161847f8eSopenharmony_ci   */
25261847f8eSopenharmony_ci  /**
25361847f8eSopenharmony_ci   * Called when a component is drawn.
25461847f8eSopenharmony_ci   *
25561847f8eSopenharmony_ci   * @param { PixelMap } value
25661847f8eSopenharmony_ci   * @returns { ShapeAttribute }
25761847f8eSopenharmony_ci   * @syscap SystemCapability.ArkUI.ArkUI.Full
25861847f8eSopenharmony_ci   * @crossplatform
25961847f8eSopenharmony_ci   * @atomicservice
26061847f8eSopenharmony_ci   * @since 11
26161847f8eSopenharmony_ci   */
26261847f8eSopenharmony_ci  (value: PixelMap): ShapeAttribute;
26361847f8eSopenharmony_ci
26461847f8eSopenharmony_ci  /**
26561847f8eSopenharmony_ci   * Called when a component is drawn.
26661847f8eSopenharmony_ci   *
26761847f8eSopenharmony_ci   * @returns { ShapeAttribute }
26861847f8eSopenharmony_ci   * @syscap SystemCapability.ArkUI.ArkUI.Full
26961847f8eSopenharmony_ci   * @since 7
27061847f8eSopenharmony_ci   */
27161847f8eSopenharmony_ci  /**
27261847f8eSopenharmony_ci   * Called when a component is drawn.
27361847f8eSopenharmony_ci   *
27461847f8eSopenharmony_ci   * @returns { ShapeAttribute }
27561847f8eSopenharmony_ci   * @syscap SystemCapability.ArkUI.ArkUI.Full
27661847f8eSopenharmony_ci   * @form
27761847f8eSopenharmony_ci   * @since 9
27861847f8eSopenharmony_ci   */
27961847f8eSopenharmony_ci  /**
28061847f8eSopenharmony_ci   * Called when a component is drawn.
28161847f8eSopenharmony_ci   *
28261847f8eSopenharmony_ci   * @returns { ShapeAttribute }
28361847f8eSopenharmony_ci   * @syscap SystemCapability.ArkUI.ArkUI.Full
28461847f8eSopenharmony_ci   * @crossplatform
28561847f8eSopenharmony_ci   * @form
28661847f8eSopenharmony_ci   * @since 10
28761847f8eSopenharmony_ci   */
28861847f8eSopenharmony_ci  /**
28961847f8eSopenharmony_ci   * Called when a component is drawn.
29061847f8eSopenharmony_ci   *
29161847f8eSopenharmony_ci   * @returns { ShapeAttribute }
29261847f8eSopenharmony_ci   * @syscap SystemCapability.ArkUI.ArkUI.Full
29361847f8eSopenharmony_ci   * @crossplatform
29461847f8eSopenharmony_ci   * @form
29561847f8eSopenharmony_ci   * @atomicservice
29661847f8eSopenharmony_ci   * @since 11
29761847f8eSopenharmony_ci   */
29861847f8eSopenharmony_ci  (): ShapeAttribute;
29961847f8eSopenharmony_ci}
30061847f8eSopenharmony_ci
30161847f8eSopenharmony_ci/**
30261847f8eSopenharmony_ci * @extends CommonMethod<ShapeAttribute>
30361847f8eSopenharmony_ci * @syscap SystemCapability.ArkUI.ArkUI.Full
30461847f8eSopenharmony_ci * @since 7
30561847f8eSopenharmony_ci */
30661847f8eSopenharmony_ci/**
30761847f8eSopenharmony_ci * @extends CommonMethod<ShapeAttribute>
30861847f8eSopenharmony_ci * @syscap SystemCapability.ArkUI.ArkUI.Full
30961847f8eSopenharmony_ci * @form
31061847f8eSopenharmony_ci * @since 9
31161847f8eSopenharmony_ci */
31261847f8eSopenharmony_ci/**
31361847f8eSopenharmony_ci * @extends CommonMethod<ShapeAttribute>
31461847f8eSopenharmony_ci * @syscap SystemCapability.ArkUI.ArkUI.Full
31561847f8eSopenharmony_ci * @crossplatform
31661847f8eSopenharmony_ci * @form
31761847f8eSopenharmony_ci * @since 10
31861847f8eSopenharmony_ci */
31961847f8eSopenharmony_ci/**
32061847f8eSopenharmony_ci * @extends CommonMethod<ShapeAttribute>
32161847f8eSopenharmony_ci * @syscap SystemCapability.ArkUI.ArkUI.Full
32261847f8eSopenharmony_ci * @crossplatform
32361847f8eSopenharmony_ci * @form
32461847f8eSopenharmony_ci * @atomicservice
32561847f8eSopenharmony_ci * @since 11
32661847f8eSopenharmony_ci */
32761847f8eSopenharmony_cideclare class ShapeAttribute extends CommonMethod<ShapeAttribute> {
32861847f8eSopenharmony_ci  /**
32961847f8eSopenharmony_ci   * Viewport of shape
33061847f8eSopenharmony_ci   *
33161847f8eSopenharmony_ci   * @param { object } value
33261847f8eSopenharmony_ci   * @returns { ShapeAttribute }
33361847f8eSopenharmony_ci   * @syscap SystemCapability.ArkUI.ArkUI.Full
33461847f8eSopenharmony_ci   * @since 7
33561847f8eSopenharmony_ci   */
33661847f8eSopenharmony_ci  /**
33761847f8eSopenharmony_ci   * Viewport of shape
33861847f8eSopenharmony_ci   *
33961847f8eSopenharmony_ci   * @param { object } value
34061847f8eSopenharmony_ci   * @returns { ShapeAttribute }
34161847f8eSopenharmony_ci   * @syscap SystemCapability.ArkUI.ArkUI.Full
34261847f8eSopenharmony_ci   * @form
34361847f8eSopenharmony_ci   * @since 9
34461847f8eSopenharmony_ci   */
34561847f8eSopenharmony_ci  /**
34661847f8eSopenharmony_ci   * Viewport of shape
34761847f8eSopenharmony_ci   *
34861847f8eSopenharmony_ci   * @param { object } value
34961847f8eSopenharmony_ci   * @returns { ShapeAttribute }
35061847f8eSopenharmony_ci   * @syscap SystemCapability.ArkUI.ArkUI.Full
35161847f8eSopenharmony_ci   * @crossplatform
35261847f8eSopenharmony_ci   * @form
35361847f8eSopenharmony_ci   * @since 10
35461847f8eSopenharmony_ci   */
35561847f8eSopenharmony_ci  /**
35661847f8eSopenharmony_ci   * Viewport of shape
35761847f8eSopenharmony_ci   *
35861847f8eSopenharmony_ci   * @param { object } value
35961847f8eSopenharmony_ci   * @returns { ShapeAttribute }
36061847f8eSopenharmony_ci   * @syscap SystemCapability.ArkUI.ArkUI.Full
36161847f8eSopenharmony_ci   * @crossplatform
36261847f8eSopenharmony_ci   * @form
36361847f8eSopenharmony_ci   * @atomicservice
36461847f8eSopenharmony_ci   * @since 11
36561847f8eSopenharmony_ci   */
36661847f8eSopenharmony_ci  /**
36761847f8eSopenharmony_ci   * Viewport of shape
36861847f8eSopenharmony_ci   *
36961847f8eSopenharmony_ci   * @param { ViewportRect } value
37061847f8eSopenharmony_ci   * @returns { ShapeAttribute }
37161847f8eSopenharmony_ci   * @syscap SystemCapability.ArkUI.ArkUI.Full
37261847f8eSopenharmony_ci   * @crossplatform
37361847f8eSopenharmony_ci   * @form
37461847f8eSopenharmony_ci   * @atomicservice
37561847f8eSopenharmony_ci   * @since 14
37661847f8eSopenharmony_ci   */
37761847f8eSopenharmony_ci  viewPort(value: ViewportRect): ShapeAttribute;
37861847f8eSopenharmony_ci
37961847f8eSopenharmony_ci  /**
38061847f8eSopenharmony_ci   * Called when the border color is set.
38161847f8eSopenharmony_ci   *
38261847f8eSopenharmony_ci   * @param { ResourceColor } value
38361847f8eSopenharmony_ci   * @returns { ShapeAttribute }
38461847f8eSopenharmony_ci   * @syscap SystemCapability.ArkUI.ArkUI.Full
38561847f8eSopenharmony_ci   * @since 7
38661847f8eSopenharmony_ci   */
38761847f8eSopenharmony_ci  /**
38861847f8eSopenharmony_ci   * Called when the border color is set.
38961847f8eSopenharmony_ci   *
39061847f8eSopenharmony_ci   * @param { ResourceColor } value
39161847f8eSopenharmony_ci   * @returns { ShapeAttribute }
39261847f8eSopenharmony_ci   * @syscap SystemCapability.ArkUI.ArkUI.Full
39361847f8eSopenharmony_ci   * @form
39461847f8eSopenharmony_ci   * @since 9
39561847f8eSopenharmony_ci   */
39661847f8eSopenharmony_ci  /**
39761847f8eSopenharmony_ci   * Called when the border color is set.
39861847f8eSopenharmony_ci   *
39961847f8eSopenharmony_ci   * @param { ResourceColor } value
40061847f8eSopenharmony_ci   * @returns { ShapeAttribute }
40161847f8eSopenharmony_ci   * @syscap SystemCapability.ArkUI.ArkUI.Full
40261847f8eSopenharmony_ci   * @crossplatform
40361847f8eSopenharmony_ci   * @form
40461847f8eSopenharmony_ci   * @since 10
40561847f8eSopenharmony_ci   */
40661847f8eSopenharmony_ci  /**
40761847f8eSopenharmony_ci   * Called when the border color is set.
40861847f8eSopenharmony_ci   *
40961847f8eSopenharmony_ci   * @param { ResourceColor } value
41061847f8eSopenharmony_ci   * @returns { ShapeAttribute }
41161847f8eSopenharmony_ci   * @syscap SystemCapability.ArkUI.ArkUI.Full
41261847f8eSopenharmony_ci   * @crossplatform
41361847f8eSopenharmony_ci   * @form
41461847f8eSopenharmony_ci   * @atomicservice
41561847f8eSopenharmony_ci   * @since 11
41661847f8eSopenharmony_ci   */
41761847f8eSopenharmony_ci  stroke(value: ResourceColor): ShapeAttribute;
41861847f8eSopenharmony_ci
41961847f8eSopenharmony_ci  /**
42061847f8eSopenharmony_ci   * Called when the fill color is set.
42161847f8eSopenharmony_ci   *
42261847f8eSopenharmony_ci   * @param { ResourceColor } value
42361847f8eSopenharmony_ci   * @returns { ShapeAttribute }
42461847f8eSopenharmony_ci   * @syscap SystemCapability.ArkUI.ArkUI.Full
42561847f8eSopenharmony_ci   * @since 7
42661847f8eSopenharmony_ci   */
42761847f8eSopenharmony_ci  /**
42861847f8eSopenharmony_ci   * Called when the fill color is set.
42961847f8eSopenharmony_ci   *
43061847f8eSopenharmony_ci   * @param { ResourceColor } value
43161847f8eSopenharmony_ci   * @returns { ShapeAttribute }
43261847f8eSopenharmony_ci   * @syscap SystemCapability.ArkUI.ArkUI.Full
43361847f8eSopenharmony_ci   * @form
43461847f8eSopenharmony_ci   * @since 9
43561847f8eSopenharmony_ci   */
43661847f8eSopenharmony_ci  /**
43761847f8eSopenharmony_ci   * Called when the fill color is set.
43861847f8eSopenharmony_ci   *
43961847f8eSopenharmony_ci   * @param { ResourceColor } value
44061847f8eSopenharmony_ci   * @returns { ShapeAttribute }
44161847f8eSopenharmony_ci   * @syscap SystemCapability.ArkUI.ArkUI.Full
44261847f8eSopenharmony_ci   * @crossplatform
44361847f8eSopenharmony_ci   * @form
44461847f8eSopenharmony_ci   * @since 10
44561847f8eSopenharmony_ci   */
44661847f8eSopenharmony_ci  /**
44761847f8eSopenharmony_ci   * Called when the fill color is set.
44861847f8eSopenharmony_ci   *
44961847f8eSopenharmony_ci   * @param { ResourceColor } value
45061847f8eSopenharmony_ci   * @returns { ShapeAttribute }
45161847f8eSopenharmony_ci   * @syscap SystemCapability.ArkUI.ArkUI.Full
45261847f8eSopenharmony_ci   * @crossplatform
45361847f8eSopenharmony_ci   * @form
45461847f8eSopenharmony_ci   * @atomicservice
45561847f8eSopenharmony_ci   * @since 11
45661847f8eSopenharmony_ci   */
45761847f8eSopenharmony_ci  fill(value: ResourceColor): ShapeAttribute;
45861847f8eSopenharmony_ci
45961847f8eSopenharmony_ci  /**
46061847f8eSopenharmony_ci   * Called when the offset of the starting point of border drawing is set.
46161847f8eSopenharmony_ci   *
46261847f8eSopenharmony_ci   * @param { number | string } value
46361847f8eSopenharmony_ci   * @returns { ShapeAttribute }
46461847f8eSopenharmony_ci   * @syscap SystemCapability.ArkUI.ArkUI.Full
46561847f8eSopenharmony_ci   * @since 7
46661847f8eSopenharmony_ci   */
46761847f8eSopenharmony_ci  /**
46861847f8eSopenharmony_ci   * Called when the offset of the starting point of border drawing is set.
46961847f8eSopenharmony_ci   *
47061847f8eSopenharmony_ci   * @param { number | string } value
47161847f8eSopenharmony_ci   * @returns { ShapeAttribute }
47261847f8eSopenharmony_ci   * @syscap SystemCapability.ArkUI.ArkUI.Full
47361847f8eSopenharmony_ci   * @form
47461847f8eSopenharmony_ci   * @since 9
47561847f8eSopenharmony_ci   */
47661847f8eSopenharmony_ci  /**
47761847f8eSopenharmony_ci   * Called when the offset of the starting point of border drawing is set.
47861847f8eSopenharmony_ci   *
47961847f8eSopenharmony_ci   * @param { number | string } value
48061847f8eSopenharmony_ci   * @returns { ShapeAttribute }
48161847f8eSopenharmony_ci   * @syscap SystemCapability.ArkUI.ArkUI.Full
48261847f8eSopenharmony_ci   * @crossplatform
48361847f8eSopenharmony_ci   * @form
48461847f8eSopenharmony_ci   * @since 10
48561847f8eSopenharmony_ci   */
48661847f8eSopenharmony_ci  /**
48761847f8eSopenharmony_ci   * Called when the offset of the starting point of border drawing is set.
48861847f8eSopenharmony_ci   *
48961847f8eSopenharmony_ci   * @param { number | string } value
49061847f8eSopenharmony_ci   * @returns { ShapeAttribute }
49161847f8eSopenharmony_ci   * @syscap SystemCapability.ArkUI.ArkUI.Full
49261847f8eSopenharmony_ci   * @crossplatform
49361847f8eSopenharmony_ci   * @form
49461847f8eSopenharmony_ci   * @atomicservice
49561847f8eSopenharmony_ci   * @since 11
49661847f8eSopenharmony_ci   */
49761847f8eSopenharmony_ci  strokeDashOffset(value: number | string): ShapeAttribute;
49861847f8eSopenharmony_ci
49961847f8eSopenharmony_ci  /**
50061847f8eSopenharmony_ci   * Called when the gap of the border is set.
50161847f8eSopenharmony_ci   *
50261847f8eSopenharmony_ci   * @param { Array<any> } value
50361847f8eSopenharmony_ci   * @returns { ShapeAttribute }
50461847f8eSopenharmony_ci   * @syscap SystemCapability.ArkUI.ArkUI.Full
50561847f8eSopenharmony_ci   * @since 7
50661847f8eSopenharmony_ci   */
50761847f8eSopenharmony_ci  /**
50861847f8eSopenharmony_ci   * Called when the gap of the border is set.
50961847f8eSopenharmony_ci   *
51061847f8eSopenharmony_ci   * @param { Array<any> } value
51161847f8eSopenharmony_ci   * @returns { ShapeAttribute }
51261847f8eSopenharmony_ci   * @syscap SystemCapability.ArkUI.ArkUI.Full
51361847f8eSopenharmony_ci   * @form
51461847f8eSopenharmony_ci   * @since 9
51561847f8eSopenharmony_ci   */
51661847f8eSopenharmony_ci  /**
51761847f8eSopenharmony_ci   * Called when the gap of the border is set.
51861847f8eSopenharmony_ci   *
51961847f8eSopenharmony_ci   * @param { Array<any> } value
52061847f8eSopenharmony_ci   * @returns { ShapeAttribute }
52161847f8eSopenharmony_ci   * @syscap SystemCapability.ArkUI.ArkUI.Full
52261847f8eSopenharmony_ci   * @crossplatform
52361847f8eSopenharmony_ci   * @form
52461847f8eSopenharmony_ci   * @since 10
52561847f8eSopenharmony_ci   */
52661847f8eSopenharmony_ci  /**
52761847f8eSopenharmony_ci   * Called when the gap of the border is set.
52861847f8eSopenharmony_ci   *
52961847f8eSopenharmony_ci   * @param { Array<any> } value
53061847f8eSopenharmony_ci   * @returns { ShapeAttribute }
53161847f8eSopenharmony_ci   * @syscap SystemCapability.ArkUI.ArkUI.Full
53261847f8eSopenharmony_ci   * @crossplatform
53361847f8eSopenharmony_ci   * @form
53461847f8eSopenharmony_ci   * @atomicservice
53561847f8eSopenharmony_ci   * @since 11
53661847f8eSopenharmony_ci   */
53761847f8eSopenharmony_ci  strokeDashArray(value: Array<any>): ShapeAttribute;
53861847f8eSopenharmony_ci
53961847f8eSopenharmony_ci  /**
54061847f8eSopenharmony_ci   * Called when the path endpoint drawing style is set.
54161847f8eSopenharmony_ci   *
54261847f8eSopenharmony_ci   * @param { LineCapStyle } value
54361847f8eSopenharmony_ci   * @returns { ShapeAttribute }
54461847f8eSopenharmony_ci   * @syscap SystemCapability.ArkUI.ArkUI.Full
54561847f8eSopenharmony_ci   * @since 7
54661847f8eSopenharmony_ci   */
54761847f8eSopenharmony_ci  /**
54861847f8eSopenharmony_ci   * Called when the path endpoint drawing style is set.
54961847f8eSopenharmony_ci   *
55061847f8eSopenharmony_ci   * @param { LineCapStyle } value
55161847f8eSopenharmony_ci   * @returns { ShapeAttribute }
55261847f8eSopenharmony_ci   * @syscap SystemCapability.ArkUI.ArkUI.Full
55361847f8eSopenharmony_ci   * @form
55461847f8eSopenharmony_ci   * @since 9
55561847f8eSopenharmony_ci   */
55661847f8eSopenharmony_ci  /**
55761847f8eSopenharmony_ci   * Called when the path endpoint drawing style is set.
55861847f8eSopenharmony_ci   *
55961847f8eSopenharmony_ci   * @param { LineCapStyle } value
56061847f8eSopenharmony_ci   * @returns { ShapeAttribute }
56161847f8eSopenharmony_ci   * @syscap SystemCapability.ArkUI.ArkUI.Full
56261847f8eSopenharmony_ci   * @crossplatform
56361847f8eSopenharmony_ci   * @form
56461847f8eSopenharmony_ci   * @since 10
56561847f8eSopenharmony_ci   */
56661847f8eSopenharmony_ci  /**
56761847f8eSopenharmony_ci   * Called when the path endpoint drawing style is set.
56861847f8eSopenharmony_ci   *
56961847f8eSopenharmony_ci   * @param { LineCapStyle } value
57061847f8eSopenharmony_ci   * @returns { ShapeAttribute }
57161847f8eSopenharmony_ci   * @syscap SystemCapability.ArkUI.ArkUI.Full
57261847f8eSopenharmony_ci   * @crossplatform
57361847f8eSopenharmony_ci   * @form
57461847f8eSopenharmony_ci   * @atomicservice
57561847f8eSopenharmony_ci   * @since 11
57661847f8eSopenharmony_ci   */
57761847f8eSopenharmony_ci  strokeLineCap(value: LineCapStyle): ShapeAttribute;
57861847f8eSopenharmony_ci
57961847f8eSopenharmony_ci  /**
58061847f8eSopenharmony_ci   * Called when the border corner drawing style is set.
58161847f8eSopenharmony_ci   *
58261847f8eSopenharmony_ci   * @param { LineJoinStyle } value
58361847f8eSopenharmony_ci   * @returns { ShapeAttribute }
58461847f8eSopenharmony_ci   * @syscap SystemCapability.ArkUI.ArkUI.Full
58561847f8eSopenharmony_ci   * @since 7
58661847f8eSopenharmony_ci   */
58761847f8eSopenharmony_ci  /**
58861847f8eSopenharmony_ci   * Called when the border corner drawing style is set.
58961847f8eSopenharmony_ci   *
59061847f8eSopenharmony_ci   * @param { LineJoinStyle } value
59161847f8eSopenharmony_ci   * @returns { ShapeAttribute }
59261847f8eSopenharmony_ci   * @syscap SystemCapability.ArkUI.ArkUI.Full
59361847f8eSopenharmony_ci   * @form
59461847f8eSopenharmony_ci   * @since 9
59561847f8eSopenharmony_ci   */
59661847f8eSopenharmony_ci  /**
59761847f8eSopenharmony_ci   * Called when the border corner drawing style is set.
59861847f8eSopenharmony_ci   *
59961847f8eSopenharmony_ci   * @param { LineJoinStyle } value
60061847f8eSopenharmony_ci   * @returns { ShapeAttribute }
60161847f8eSopenharmony_ci   * @syscap SystemCapability.ArkUI.ArkUI.Full
60261847f8eSopenharmony_ci   * @crossplatform
60361847f8eSopenharmony_ci   * @form
60461847f8eSopenharmony_ci   * @since 10
60561847f8eSopenharmony_ci   */
60661847f8eSopenharmony_ci  /**
60761847f8eSopenharmony_ci   * Called when the border corner drawing style is set.
60861847f8eSopenharmony_ci   *
60961847f8eSopenharmony_ci   * @param { LineJoinStyle } value
61061847f8eSopenharmony_ci   * @returns { ShapeAttribute }
61161847f8eSopenharmony_ci   * @syscap SystemCapability.ArkUI.ArkUI.Full
61261847f8eSopenharmony_ci   * @crossplatform
61361847f8eSopenharmony_ci   * @form
61461847f8eSopenharmony_ci   * @atomicservice
61561847f8eSopenharmony_ci   * @since 11
61661847f8eSopenharmony_ci   */
61761847f8eSopenharmony_ci  strokeLineJoin(value: LineJoinStyle): ShapeAttribute;
61861847f8eSopenharmony_ci
61961847f8eSopenharmony_ci  /**
62061847f8eSopenharmony_ci   * Called when the limit value for drawing acute angles as oblique angles is set.
62161847f8eSopenharmony_ci   *
62261847f8eSopenharmony_ci   * @param { number | string } value
62361847f8eSopenharmony_ci   * @returns { ShapeAttribute }
62461847f8eSopenharmony_ci   * @syscap SystemCapability.ArkUI.ArkUI.Full
62561847f8eSopenharmony_ci   * @since 7
62661847f8eSopenharmony_ci   */
62761847f8eSopenharmony_ci  /**
62861847f8eSopenharmony_ci   * Called when the limit value for drawing acute angles as oblique angles is set.
62961847f8eSopenharmony_ci   *
63061847f8eSopenharmony_ci   * @param { number | string } value
63161847f8eSopenharmony_ci   * @returns { ShapeAttribute }
63261847f8eSopenharmony_ci   * @syscap SystemCapability.ArkUI.ArkUI.Full
63361847f8eSopenharmony_ci   * @form
63461847f8eSopenharmony_ci   * @since 9
63561847f8eSopenharmony_ci   */
63661847f8eSopenharmony_ci  /**
63761847f8eSopenharmony_ci   * Called when the limit value for drawing acute angles as oblique angles is set.
63861847f8eSopenharmony_ci   *
63961847f8eSopenharmony_ci   * @param { number | string } value
64061847f8eSopenharmony_ci   * @returns { ShapeAttribute }
64161847f8eSopenharmony_ci   * @syscap SystemCapability.ArkUI.ArkUI.Full
64261847f8eSopenharmony_ci   * @crossplatform
64361847f8eSopenharmony_ci   * @form
64461847f8eSopenharmony_ci   * @since 10
64561847f8eSopenharmony_ci   */
64661847f8eSopenharmony_ci  /**
64761847f8eSopenharmony_ci   * Called when the limit value for drawing acute angles as oblique angles is set.
64861847f8eSopenharmony_ci   *
64961847f8eSopenharmony_ci   * @param { number | string } value
65061847f8eSopenharmony_ci   * @returns { ShapeAttribute }
65161847f8eSopenharmony_ci   * @syscap SystemCapability.ArkUI.ArkUI.Full
65261847f8eSopenharmony_ci   * @crossplatform
65361847f8eSopenharmony_ci   * @form
65461847f8eSopenharmony_ci   * @atomicservice
65561847f8eSopenharmony_ci   * @since 11
65661847f8eSopenharmony_ci   */
65761847f8eSopenharmony_ci  strokeMiterLimit(value: number | string): ShapeAttribute;
65861847f8eSopenharmony_ci
65961847f8eSopenharmony_ci  /**
66061847f8eSopenharmony_ci   * Called when the opacity of the border is set.
66161847f8eSopenharmony_ci   *
66261847f8eSopenharmony_ci   * @param { number | string | Resource } value
66361847f8eSopenharmony_ci   * @returns { ShapeAttribute }
66461847f8eSopenharmony_ci   * @syscap SystemCapability.ArkUI.ArkUI.Full
66561847f8eSopenharmony_ci   * @since 7
66661847f8eSopenharmony_ci   */
66761847f8eSopenharmony_ci  /**
66861847f8eSopenharmony_ci   * Called when the opacity of the border is set.
66961847f8eSopenharmony_ci   *
67061847f8eSopenharmony_ci   * @param { number | string | Resource } value
67161847f8eSopenharmony_ci   * @returns { ShapeAttribute }
67261847f8eSopenharmony_ci   * @syscap SystemCapability.ArkUI.ArkUI.Full
67361847f8eSopenharmony_ci   * @form
67461847f8eSopenharmony_ci   * @since 9
67561847f8eSopenharmony_ci   */
67661847f8eSopenharmony_ci  /**
67761847f8eSopenharmony_ci   * Called when the opacity of the border is set.
67861847f8eSopenharmony_ci   *
67961847f8eSopenharmony_ci   * @param { number | string | Resource } value
68061847f8eSopenharmony_ci   * @returns { ShapeAttribute }
68161847f8eSopenharmony_ci   * @syscap SystemCapability.ArkUI.ArkUI.Full
68261847f8eSopenharmony_ci   * @crossplatform
68361847f8eSopenharmony_ci   * @form
68461847f8eSopenharmony_ci   * @since 10
68561847f8eSopenharmony_ci   */
68661847f8eSopenharmony_ci  /**
68761847f8eSopenharmony_ci   * Called when the opacity of the border is set.
68861847f8eSopenharmony_ci   *
68961847f8eSopenharmony_ci   * @param { number | string | Resource } value
69061847f8eSopenharmony_ci   * @returns { ShapeAttribute }
69161847f8eSopenharmony_ci   * @syscap SystemCapability.ArkUI.ArkUI.Full
69261847f8eSopenharmony_ci   * @crossplatform
69361847f8eSopenharmony_ci   * @form
69461847f8eSopenharmony_ci   * @atomicservice
69561847f8eSopenharmony_ci   * @since 11
69661847f8eSopenharmony_ci   */
69761847f8eSopenharmony_ci  strokeOpacity(value: number | string | Resource): ShapeAttribute;
69861847f8eSopenharmony_ci
69961847f8eSopenharmony_ci  /**
70061847f8eSopenharmony_ci   * Called when the transparency of the border is set.
70161847f8eSopenharmony_ci   *
70261847f8eSopenharmony_ci   * @param { number | string | Resource } value
70361847f8eSopenharmony_ci   * @returns { ShapeAttribute }
70461847f8eSopenharmony_ci   * @syscap SystemCapability.ArkUI.ArkUI.Full
70561847f8eSopenharmony_ci   * @since 7
70661847f8eSopenharmony_ci   */
70761847f8eSopenharmony_ci  /**
70861847f8eSopenharmony_ci   * Called when the transparency of the border is set.
70961847f8eSopenharmony_ci   *
71061847f8eSopenharmony_ci   * @param { number | string | Resource } value
71161847f8eSopenharmony_ci   * @returns { ShapeAttribute }
71261847f8eSopenharmony_ci   * @syscap SystemCapability.ArkUI.ArkUI.Full
71361847f8eSopenharmony_ci   * @form
71461847f8eSopenharmony_ci   * @since 9
71561847f8eSopenharmony_ci   */
71661847f8eSopenharmony_ci  /**
71761847f8eSopenharmony_ci   * Called when the transparency of the border is set.
71861847f8eSopenharmony_ci   *
71961847f8eSopenharmony_ci   * @param { number | string | Resource } value
72061847f8eSopenharmony_ci   * @returns { ShapeAttribute }
72161847f8eSopenharmony_ci   * @syscap SystemCapability.ArkUI.ArkUI.Full
72261847f8eSopenharmony_ci   * @crossplatform
72361847f8eSopenharmony_ci   * @form
72461847f8eSopenharmony_ci   * @since 10
72561847f8eSopenharmony_ci   */
72661847f8eSopenharmony_ci  /**
72761847f8eSopenharmony_ci   * Called when the transparency of the border is set.
72861847f8eSopenharmony_ci   *
72961847f8eSopenharmony_ci   * @param { number | string | Resource } value
73061847f8eSopenharmony_ci   * @returns { ShapeAttribute }
73161847f8eSopenharmony_ci   * @syscap SystemCapability.ArkUI.ArkUI.Full
73261847f8eSopenharmony_ci   * @crossplatform
73361847f8eSopenharmony_ci   * @form
73461847f8eSopenharmony_ci   * @atomicservice
73561847f8eSopenharmony_ci   * @since 11
73661847f8eSopenharmony_ci   */
73761847f8eSopenharmony_ci  fillOpacity(value: number | string | Resource): ShapeAttribute;
73861847f8eSopenharmony_ci
73961847f8eSopenharmony_ci  /**
74061847f8eSopenharmony_ci   * Called when the width of the border is set.
74161847f8eSopenharmony_ci   *
74261847f8eSopenharmony_ci   * @param { number | string } value
74361847f8eSopenharmony_ci   * @returns { ShapeAttribute }
74461847f8eSopenharmony_ci   * @syscap SystemCapability.ArkUI.ArkUI.Full
74561847f8eSopenharmony_ci   * @since 7
74661847f8eSopenharmony_ci   */
74761847f8eSopenharmony_ci  /**
74861847f8eSopenharmony_ci   * Called when the width of the border is set.
74961847f8eSopenharmony_ci   *
75061847f8eSopenharmony_ci   * @param { number | string } value
75161847f8eSopenharmony_ci   * @returns { ShapeAttribute }
75261847f8eSopenharmony_ci   * @syscap SystemCapability.ArkUI.ArkUI.Full
75361847f8eSopenharmony_ci   * @form
75461847f8eSopenharmony_ci   * @since 9
75561847f8eSopenharmony_ci   */
75661847f8eSopenharmony_ci  /**
75761847f8eSopenharmony_ci   * Called when the width of the border is set.
75861847f8eSopenharmony_ci   *
75961847f8eSopenharmony_ci   * @param { number | string } value
76061847f8eSopenharmony_ci   * @returns { ShapeAttribute }
76161847f8eSopenharmony_ci   * @syscap SystemCapability.ArkUI.ArkUI.Full
76261847f8eSopenharmony_ci   * @crossplatform
76361847f8eSopenharmony_ci   * @form
76461847f8eSopenharmony_ci   * @since 10
76561847f8eSopenharmony_ci   */
76661847f8eSopenharmony_ci  /**
76761847f8eSopenharmony_ci   * Called when the width of the border is set.
76861847f8eSopenharmony_ci   *
76961847f8eSopenharmony_ci   * @param { number | string } value
77061847f8eSopenharmony_ci   * @returns { ShapeAttribute }
77161847f8eSopenharmony_ci   * @syscap SystemCapability.ArkUI.ArkUI.Full
77261847f8eSopenharmony_ci   * @crossplatform
77361847f8eSopenharmony_ci   * @form
77461847f8eSopenharmony_ci   * @atomicservice
77561847f8eSopenharmony_ci   * @since 11
77661847f8eSopenharmony_ci   */
77761847f8eSopenharmony_ci  strokeWidth(value: number | string): ShapeAttribute;
77861847f8eSopenharmony_ci
77961847f8eSopenharmony_ci  /**
78061847f8eSopenharmony_ci   * Called when setting whether anti aliasing is on.
78161847f8eSopenharmony_ci   *
78261847f8eSopenharmony_ci   * @param { boolean } value
78361847f8eSopenharmony_ci   * @returns { ShapeAttribute }
78461847f8eSopenharmony_ci   * @syscap SystemCapability.ArkUI.ArkUI.Full
78561847f8eSopenharmony_ci   * @since 7
78661847f8eSopenharmony_ci   */
78761847f8eSopenharmony_ci  /**
78861847f8eSopenharmony_ci   * Called when setting whether anti aliasing is on.
78961847f8eSopenharmony_ci   *
79061847f8eSopenharmony_ci   * @param { boolean } value
79161847f8eSopenharmony_ci   * @returns { ShapeAttribute }
79261847f8eSopenharmony_ci   * @syscap SystemCapability.ArkUI.ArkUI.Full
79361847f8eSopenharmony_ci   * @form
79461847f8eSopenharmony_ci   * @since 9
79561847f8eSopenharmony_ci   */
79661847f8eSopenharmony_ci  /**
79761847f8eSopenharmony_ci   * Called when setting whether anti aliasing is on.
79861847f8eSopenharmony_ci   *
79961847f8eSopenharmony_ci   * @param { boolean } value
80061847f8eSopenharmony_ci   * @returns { ShapeAttribute }
80161847f8eSopenharmony_ci   * @syscap SystemCapability.ArkUI.ArkUI.Full
80261847f8eSopenharmony_ci   * @crossplatform
80361847f8eSopenharmony_ci   * @form
80461847f8eSopenharmony_ci   * @since 10
80561847f8eSopenharmony_ci   */
80661847f8eSopenharmony_ci  /**
80761847f8eSopenharmony_ci   * Called when setting whether anti aliasing is on.
80861847f8eSopenharmony_ci   *
80961847f8eSopenharmony_ci   * @param { boolean } value
81061847f8eSopenharmony_ci   * @returns { ShapeAttribute }
81161847f8eSopenharmony_ci   * @syscap SystemCapability.ArkUI.ArkUI.Full
81261847f8eSopenharmony_ci   * @crossplatform
81361847f8eSopenharmony_ci   * @form
81461847f8eSopenharmony_ci   * @atomicservice
81561847f8eSopenharmony_ci   * @since 11
81661847f8eSopenharmony_ci   */
81761847f8eSopenharmony_ci  antiAlias(value: boolean): ShapeAttribute;
81861847f8eSopenharmony_ci
81961847f8eSopenharmony_ci  /**
82061847f8eSopenharmony_ci   * Called when shape mesh.
82161847f8eSopenharmony_ci   *
82261847f8eSopenharmony_ci   * @param { Array<any> } value
82361847f8eSopenharmony_ci   * @param { number } column
82461847f8eSopenharmony_ci   * @param { number } row
82561847f8eSopenharmony_ci   * @returns { ShapeAttribute }
82661847f8eSopenharmony_ci   * @syscap SystemCapability.ArkUI.ArkUI.Full
82761847f8eSopenharmony_ci   * @since 8
82861847f8eSopenharmony_ci   */
82961847f8eSopenharmony_ci  /**
83061847f8eSopenharmony_ci   * Called when shape mesh.
83161847f8eSopenharmony_ci   *
83261847f8eSopenharmony_ci   * @param { Array<any> } value
83361847f8eSopenharmony_ci   * @param { number } column
83461847f8eSopenharmony_ci   * @param { number } row
83561847f8eSopenharmony_ci   * @returns { ShapeAttribute }
83661847f8eSopenharmony_ci   * @syscap SystemCapability.ArkUI.ArkUI.Full
83761847f8eSopenharmony_ci   * @form
83861847f8eSopenharmony_ci   * @since 9
83961847f8eSopenharmony_ci   */
84061847f8eSopenharmony_ci  /**
84161847f8eSopenharmony_ci   * Called when shape mesh.
84261847f8eSopenharmony_ci   *
84361847f8eSopenharmony_ci   * @param { Array<any> } value
84461847f8eSopenharmony_ci   * @param { number } column
84561847f8eSopenharmony_ci   * @param { number } row
84661847f8eSopenharmony_ci   * @returns { ShapeAttribute }
84761847f8eSopenharmony_ci   * @syscap SystemCapability.ArkUI.ArkUI.Full
84861847f8eSopenharmony_ci   * @crossplatform
84961847f8eSopenharmony_ci   * @form
85061847f8eSopenharmony_ci   * @since 10
85161847f8eSopenharmony_ci   */
85261847f8eSopenharmony_ci  /**
85361847f8eSopenharmony_ci   * Called when shape mesh.
85461847f8eSopenharmony_ci   *
85561847f8eSopenharmony_ci   * @param { Array<any> } value
85661847f8eSopenharmony_ci   * @param { number } column
85761847f8eSopenharmony_ci   * @param { number } row
85861847f8eSopenharmony_ci   * @returns { ShapeAttribute }
85961847f8eSopenharmony_ci   * @syscap SystemCapability.ArkUI.ArkUI.Full
86061847f8eSopenharmony_ci   * @crossplatform
86161847f8eSopenharmony_ci   * @form
86261847f8eSopenharmony_ci   * @atomicservice
86361847f8eSopenharmony_ci   * @since 11
86461847f8eSopenharmony_ci   */
86561847f8eSopenharmony_ci  mesh(value: Array<any>, column: number, row: number): ShapeAttribute;
86661847f8eSopenharmony_ci}
86761847f8eSopenharmony_ci
86861847f8eSopenharmony_ci/**
86961847f8eSopenharmony_ci * Defines Shape Component.
87061847f8eSopenharmony_ci *
87161847f8eSopenharmony_ci * @syscap SystemCapability.ArkUI.ArkUI.Full
87261847f8eSopenharmony_ci * @since 7
87361847f8eSopenharmony_ci */
87461847f8eSopenharmony_ci/**
87561847f8eSopenharmony_ci * Defines Shape Component.
87661847f8eSopenharmony_ci *
87761847f8eSopenharmony_ci * @syscap SystemCapability.ArkUI.ArkUI.Full
87861847f8eSopenharmony_ci * @form
87961847f8eSopenharmony_ci * @since 9
88061847f8eSopenharmony_ci */
88161847f8eSopenharmony_ci/**
88261847f8eSopenharmony_ci * Defines Shape Component.
88361847f8eSopenharmony_ci *
88461847f8eSopenharmony_ci * @syscap SystemCapability.ArkUI.ArkUI.Full
88561847f8eSopenharmony_ci * @crossplatform
88661847f8eSopenharmony_ci * @form
88761847f8eSopenharmony_ci * @since 10
88861847f8eSopenharmony_ci */
88961847f8eSopenharmony_ci/**
89061847f8eSopenharmony_ci * Defines Shape Component.
89161847f8eSopenharmony_ci *
89261847f8eSopenharmony_ci * @syscap SystemCapability.ArkUI.ArkUI.Full
89361847f8eSopenharmony_ci * @crossplatform
89461847f8eSopenharmony_ci * @form
89561847f8eSopenharmony_ci * @atomicservice
89661847f8eSopenharmony_ci * @since 11
89761847f8eSopenharmony_ci */
89861847f8eSopenharmony_cideclare const Shape: ShapeInterface;
89961847f8eSopenharmony_ci
90061847f8eSopenharmony_ci/**
90161847f8eSopenharmony_ci * Defines Shape Component instance.
90261847f8eSopenharmony_ci *
90361847f8eSopenharmony_ci * @syscap SystemCapability.ArkUI.ArkUI.Full
90461847f8eSopenharmony_ci * @since 7
90561847f8eSopenharmony_ci */
90661847f8eSopenharmony_ci/**
90761847f8eSopenharmony_ci * Defines Shape Component instance.
90861847f8eSopenharmony_ci *
90961847f8eSopenharmony_ci * @syscap SystemCapability.ArkUI.ArkUI.Full
91061847f8eSopenharmony_ci * @form
91161847f8eSopenharmony_ci * @since 9
91261847f8eSopenharmony_ci */
91361847f8eSopenharmony_ci/**
91461847f8eSopenharmony_ci * Defines Shape Component instance.
91561847f8eSopenharmony_ci *
91661847f8eSopenharmony_ci * @syscap SystemCapability.ArkUI.ArkUI.Full
91761847f8eSopenharmony_ci * @crossplatform
91861847f8eSopenharmony_ci * @form
91961847f8eSopenharmony_ci * @since 10
92061847f8eSopenharmony_ci */
92161847f8eSopenharmony_ci/**
92261847f8eSopenharmony_ci * Defines Shape Component instance.
92361847f8eSopenharmony_ci *
92461847f8eSopenharmony_ci * @syscap SystemCapability.ArkUI.ArkUI.Full
92561847f8eSopenharmony_ci * @crossplatform
92661847f8eSopenharmony_ci * @form
92761847f8eSopenharmony_ci * @atomicservice
92861847f8eSopenharmony_ci * @since 11
92961847f8eSopenharmony_ci */
93061847f8eSopenharmony_cideclare const ShapeInstance: ShapeAttribute;
931