interface_sdk-js/api/@ohos.application.StartOptions.d.ts
zhongjianfei c53271a638 zhongjianfei@huawei.com
Signed-off-by: zhongjianfei <zhongjianfei@huawei.com>
Change-Id: Iaabcd22fc9a409965c78c6d2fc813f64c9bc2c5e
2022-01-10 11:12:24 +08:00

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;
}