* Copyright (c) Huawei Device Co., Ltd. 2024-2025. All rights reserved.
* 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.
*/
* 应用接续状态
*/
export class HiSysContinueStateData {
public static readonly ACTIVE: string = 'active';
public static readonly INACTIVE: string = 'inactive';
}
export class HiSysContinueFuncResult {
public static readonly SUCCESS: number = 1;
public static readonly FAIL: number = 2;
}
export class HiSysContinueSceneStageData {
public static readonly SCENE_SECOND: number = 2;
public static readonly SCENE_SECOND_STAGE_FIRST: number = 1;
public static readonly SCENE_EIGHTH: number = 8;
public static readonly SCENE_EIGHTH_STAGE_FOURTH: number = 4;
public static readonly SCENE_EIGHTH_STAGE_FIFTH: number = 5;
public static readonly SCENE_NINTH: number = 9;
public static readonly SCENE_NINTH_STAGE_FOURTH: number = 4;
public static readonly SCENE_NINTH_STAGE_FIFTH: number = 5;
public static readonly SCENE_TENTH: number = 10;
public static readonly SCENE_TENTH_STAGE_FIRST: number = 1;
public static readonly SCENE_TENTH_STAGE_SECOND: number = 2;
public static readonly SCENE_START: number = 1;
public static readonly SCENE_END: number = 2;
}