1/* 2 * Copyright (C) 2025 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 16export declare enum FlexAlign { 17 Start = 0, 18 Center = 1, 19 End = 2, 20 SpaceBetween = 3, 21 SpaceAround = 4, 22 SpaceEvenly = 5 23} 24 25export declare enum HorizontalAlign { 26 Start = 0, 27 Center = 1, 28 End = 2 29} 30 31export declare enum IlluminatedType { 32 NONE = 0, 33 BORDER = 1, 34 CONTENT = 2, 35 BORDER_CONTENT = 3, 36 BLOOM_BORDER = 4, 37 BLOOM_BORDER_CONTENT = 5 38} 39 40export declare enum Color { 41 White = 0, 42 Black = 1, 43 Blue = 2, 44 Brown = 3, 45 Gray = 4, 46 Green = 5, 47 Grey = 6, 48 Orange = 7, 49 Pink = 8, 50 Red = 9, 51 Yellow = 10, 52 Transparent = 11 53}