• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1/*
2 * Copyright (c) 2021-2023 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/**
17 * Create Blank.
18 *
19 * @interface BlankInterface
20 * @syscap SystemCapability.ArkUI.ArkUI.Full
21 * @since 7
22 */
23/**
24 * Create Blank.
25 *
26 * @interface BlankInterface
27 * @syscap SystemCapability.ArkUI.ArkUI.Full
28 * @since 9
29 * @form
30 */
31/**
32 * Create Blank.
33 *
34 * @interface BlankInterface
35 * @syscap SystemCapability.ArkUI.ArkUI.Full
36 * @crossplatform
37 * @since 10
38 * @form
39 */
40interface BlankInterface {
41  /**
42   * The minimum size of the blank fill assembly on the container spindle.
43   *
44   * @param { number | string } min
45   * @returns { BlankAttribute }
46   * @syscap SystemCapability.ArkUI.ArkUI.Full
47   * @since 7
48   */
49  /**
50   * The minimum size of the blank fill assembly on the container spindle.
51   *
52   * @param { number | string } min
53   * @returns { BlankAttribute }
54   * @syscap SystemCapability.ArkUI.ArkUI.Full
55   * @since 9
56   * @form
57   */
58  /**
59   * The minimum size of the blank fill assembly on the container spindle.
60   *
61   * @param { number | string } min
62   * @returns { BlankAttribute }
63   * @syscap SystemCapability.ArkUI.ArkUI.Full
64   * @crossplatform
65   * @since 10
66   * @form
67   */
68  (min?: number | string): BlankAttribute;
69}
70
71/**
72 * Inheritance CommonMethod Set Styles
73 *
74 * @extends CommonMethod
75 * @syscap SystemCapability.ArkUI.ArkUI.Full
76 * @since 7
77 */
78/**
79 * Inheritance CommonMethod Set Styles
80 *
81 * @extends CommonMethod
82 * @syscap SystemCapability.ArkUI.ArkUI.Full
83 * @since 9
84 * @form
85 */
86/**
87 * Inheritance CommonMethod Set Styles
88 *
89 * @extends CommonMethod
90 * @syscap SystemCapability.ArkUI.ArkUI.Full
91 * @crossplatform
92 * @since 10
93 * @form
94 */
95declare class BlankAttribute extends CommonMethod<BlankAttribute> {
96  /**
97   * color: set color.
98   *
99   * @param { ResourceColor } value
100   * @returns { BlankAttribute }
101   * @syscap SystemCapability.ArkUI.ArkUI.Full
102   * @since 7
103   */
104  /**
105   * color: set color.
106   *
107   * @param { ResourceColor } value
108   * @returns { BlankAttribute }
109   * @syscap SystemCapability.ArkUI.ArkUI.Full
110   * @since 9
111   * @form
112   */
113  /**
114   * color: set color.
115   *
116   * @param { ResourceColor } value
117   * @returns { BlankAttribute }
118   * @syscap SystemCapability.ArkUI.ArkUI.Full
119   * @crossplatform
120   * @since 10
121   * @form
122   */
123  color(value: ResourceColor): BlankAttribute;
124}
125
126/**
127 * Defines Blank Component.
128 *
129 * @syscap SystemCapability.ArkUI.ArkUI.Full
130 * @since 7
131 */
132/**
133 * Defines Blank Component.
134 *
135 * @syscap SystemCapability.ArkUI.ArkUI.Full
136 * @since 9
137 * @form
138 */
139/**
140 * Defines Blank Component.
141 *
142 * @syscap SystemCapability.ArkUI.ArkUI.Full
143 * @crossplatform
144 * @since 10
145 * @form
146 */
147declare const Blank: BlankInterface;
148
149/**
150 * Defines Blank Component instance.
151 *
152 * @syscap SystemCapability.ArkUI.ArkUI.Full
153 * @since 7
154 */
155/**
156 * Defines Blank Component instance.
157 *
158 * @syscap SystemCapability.ArkUI.ArkUI.Full
159 * @since 9
160 * @form
161 */
162/**
163 * Defines Blank Component instance.
164 *
165 * @syscap SystemCapability.ArkUI.ArkUI.Full
166 * @crossplatform
167 * @since 10
168 * @form
169 */
170declare const BlankInstance: BlankAttribute;
171