• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1/*
2 * Copyright (c) 2024 Huawei Device Co., Ltd.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at
6 *
7 *     http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15/**
16 * @file
17 * @kit ArkUI
18 */
19/**
20 * Defines SymbolSpan Modifier. Provided for use by the SymbolSpan component
21 *
22 * @extends SymbolSpanAttribute
23 * @implements AttributeModifier<SymbolSpanAttribute>
24 * @syscap SystemCapability.ArkUI.ArkUI.Full
25 * @atomicservice
26 * @since 12
27*/
28/**
29 * Defines SymbolSpan Modifier. Provided for use by the SymbolSpan component
30 *
31 * @extends SymbolSpanAttribute
32 * @implements AttributeModifier<SymbolSpanAttribute>
33 * @syscap SystemCapability.ArkUI.ArkUI.Full
34 * @crossplatform
35 * @atomicservice
36 * @since 20
37 */
38export declare class SymbolSpanModifier extends SymbolSpanAttribute implements AttributeModifier<SymbolSpanAttribute> {
39    /**
40     * constructor
41     *
42     * @param { Resource } src
43     * @syscap SystemCapability.ArkUI.ArkUI.Full
44     * @atomicservice
45     * @since 12
46     */
47    /**
48     * constructor
49     *
50     * @param { Resource } src
51     * @syscap SystemCapability.ArkUI.ArkUI.Full
52     * @crossplatform
53     * @atomicservice
54     * @since 20
55     */
56    constructor(src?: Resource);
57    /**
58     * Defines the normal update attribute function.
59     *
60     * @param { SymbolSpanAttribute } attribute
61     * @syscap SystemCapability.ArkUI.ArkUI.Full
62     * @atomicservice
63     * @since 12
64     */
65    /**
66     * Defines the normal update attribute function.
67     *
68     * @param { SymbolSpanAttribute } attribute
69     * @syscap SystemCapability.ArkUI.ArkUI.Full
70     * @crossplatform
71     * @atomicservice
72     * @since 20
73     */
74    applyNormalAttribute?(attribute: SymbolSpanAttribute): void;
75}
76