mirror of
https://gitee.com/openharmony/interface_sdk-js
synced 2024-11-24 07:40:25 +00:00
c53271a638
Signed-off-by: zhongjianfei <zhongjianfei@huawei.com> Change-Id: Iaabcd22fc9a409965c78c6d2fc813f64c9bc2c5e
34 lines
985 B
TypeScript
34 lines
985 B
TypeScript
/*
|
|
* Copyright (c) 2021 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.
|
|
*/
|
|
|
|
/**
|
|
* StartOptions is the basic communication component of the system.
|
|
*
|
|
* @name StartOptions
|
|
* @since 8
|
|
* @sysCap AAFwk
|
|
* @devices phone, tablet, tv, wearable, car
|
|
* @permission N/A
|
|
*/
|
|
export default class StartOptions {
|
|
/**
|
|
* windowMode
|
|
* @default -
|
|
* @devices phone, tablet
|
|
* @since 8
|
|
* @sysCap AAFwk
|
|
*/
|
|
windowMode?: number;
|
|
} |