/** * Copyright (c) 2022-2022 Huawei Device Co., Ltd. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ /** * remote animation constants. */ export default class RemoteConstants { /** * remote type for start app from launcher */ static TYPE_START_APP_FROM_LAUNCHER = 0; /** * remote type for start app from recent */ static TYPE_START_APP_FROM_RECENT = 1; /** * remote type for start app from other */ static TYPE_START_APP_FROM_OTHER = 2; /** * remote type for app transition */ static TYPE_APP_TRANSITION = 3; /** * remote type for minimize window */ static TYPE_MINIMIZE_WINDOW = 4; /** * remote type for close window */ static TYPE_CLOSE_WINDOW = 5; /** * remote type for screen unlock */ static TYPE_SCREEN_UNLOCK = 6; }