• 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 * @since 7
19 */
20/**
21 * Create Blank.
22 * @form
23 * @since 9
24 */
25interface BlankInterface {
26  /**
27   * The minimum size of the blank fill assembly on the container spindle.
28   * @since 7
29   */
30    /**
31   * The minimum size of the blank fill assembly on the container spindle.
32   * @form
33   * @since 9
34   */
35  (min?: number | string): BlankAttribute;
36}
37
38/**
39 * Inheritance CommonMethod Set Styles
40 * @since 7
41 */
42/**
43 * Inheritance CommonMethod Set Styles
44 * @form
45 * @since 9
46 */
47declare class BlankAttribute extends CommonMethod<BlankAttribute> {
48  /**
49   * color: set color.
50   * @since 7
51   */
52  /**
53   * color: set color.
54   * @form
55   * @since 9
56   */
57  color(value: ResourceColor): BlankAttribute;
58}
59
60/**
61 * Defines Blank Component.
62 * @since 7
63 */
64/**
65 * Defines Blank Component.
66 * @form
67 * @since 9
68 */
69declare const Blank: BlankInterface;
70
71/**
72 * Defines Blank Component instance.
73 * @since 7
74 */
75/**
76 * Defines Blank Component instance.
77 * @form
78 * @since 9
79 */
80declare const BlankInstance: BlankAttribute;
81