161847f8eSopenharmony_ci/*
261847f8eSopenharmony_ci * Copyright (c) 2024 Huawei Device Co., Ltd.
361847f8eSopenharmony_ci * Licensed under the Apache License, Version 2.0 (the "License"),
461847f8eSopenharmony_ci * you may not use this file except in compliance with the License.
561847f8eSopenharmony_ci * You may obtain a copy of the License at
661847f8eSopenharmony_ci *
761847f8eSopenharmony_ci *     http://www.apache.org/licenses/LICENSE-2.0
861847f8eSopenharmony_ci *
961847f8eSopenharmony_ci * Unless required by applicable law or agreed to in writing, software
1061847f8eSopenharmony_ci * distributed under the License is distributed on an "AS IS" BASIS,
1161847f8eSopenharmony_ci * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1261847f8eSopenharmony_ci * See the License for the specific language governing permissions and
1361847f8eSopenharmony_ci * limitations under the License.
1461847f8eSopenharmony_ci */
1561847f8eSopenharmony_ci
1661847f8eSopenharmony_ci/**
1761847f8eSopenharmony_ci * @file
1861847f8eSopenharmony_ci * @kit LocationKit
1961847f8eSopenharmony_ci */
2061847f8eSopenharmony_ci
2161847f8eSopenharmony_ciimport ExtensionContext from './application/ExtensionContext';
2261847f8eSopenharmony_ciimport type Want from './@ohos.app.ability.Want';
2361847f8eSopenharmony_ci
2461847f8eSopenharmony_ci/**
2561847f8eSopenharmony_ci * class of static subscriber extension context.
2661847f8eSopenharmony_ci *
2761847f8eSopenharmony_ci * @extends ExtensionContext
2861847f8eSopenharmony_ci * @syscap SystemCapability.Location.Location.Geofence
2961847f8eSopenharmony_ci * @since 13
3061847f8eSopenharmony_ci */
3161847f8eSopenharmony_ciexport default class FenceExtensionContext extends ExtensionContext {
3261847f8eSopenharmony_ci  /**
3361847f8eSopenharmony_ci   * Starts a new service extension ability.
3461847f8eSopenharmony_ci   * If the target service extension ability is visible, you can start the target service extension ability;
3561847f8eSopenharmony_ci   * If the target service extension ability is invisible,
3661847f8eSopenharmony_ci   * you need to apply for permission:ohos.permission.START_INVISIBLE_ABILITY to start target invisible service extension ability.
3761847f8eSopenharmony_ci   * If the target service extension ability is in cross-device, you need to apply for permission:ohos.permission.DISTRIBUTED_DATASYNC.
3861847f8eSopenharmony_ci   *
3961847f8eSopenharmony_ci   * @param { Want } want - Indicates the want info to start.
4061847f8eSopenharmony_ci   * @returns { Promise<void> } The promise returned by the function.
4161847f8eSopenharmony_ci   * @throws { BusinessError } 202 - The application is not system-app, can not use system-api.
4261847f8eSopenharmony_ci   * @throws { BusinessError } 401 - Parameter error. Possible causes: 1.Mandatory parameters are left unspecified. 2.Incorrect parameter types.
4361847f8eSopenharmony_ci   * @throws { BusinessError } 16000001 - The specified ability does not exist.
4461847f8eSopenharmony_ci   * @throws { BusinessError } 16000002 - Incorrect ability type.
4561847f8eSopenharmony_ci   * @throws { BusinessError } 16000004 - Can not start invisible component.
4661847f8eSopenharmony_ci   * @throws { BusinessError } 16000005 - The specified process does not have the permission.
4761847f8eSopenharmony_ci   * @throws { BusinessError } 16000006 - Cross-user operations are not allowed.
4861847f8eSopenharmony_ci   * @throws { BusinessError } 16000008 - The crowdtesting application expires.
4961847f8eSopenharmony_ci   * @throws { BusinessError } 16000011 - The context does not exist.
5061847f8eSopenharmony_ci   * @throws { BusinessError } 16000012 - The application is controlled.
5161847f8eSopenharmony_ci   * @throws { BusinessError } 16000013 - The application is controlled by EDM.
5261847f8eSopenharmony_ci   * @throws { BusinessError } 16000019 - Can not match any component.
5361847f8eSopenharmony_ci   * @throws { BusinessError } 16000050 - Internal error.
5461847f8eSopenharmony_ci   * @throws { BusinessError } 16200001 - The caller has been released.
5561847f8eSopenharmony_ci   * @syscap SystemCapability.Location.Location.Geofence
5661847f8eSopenharmony_ci   * @systemapi
5761847f8eSopenharmony_ci   * @stagemodelonly
5861847f8eSopenharmony_ci   * @since 13
5961847f8eSopenharmony_ci   */
6061847f8eSopenharmony_ci  startAbility(want: Want): Promise<void>;
6161847f8eSopenharmony_ci}
62