UNPKG

@react-native-ohos/react-native-permissions

Version:
20 lines (15 loc) 443 B
/* * Copyright (c) 2025 Huawei Device Co., Ltd. All rights reserved * Use of this source code is governed by a MIT license that can be * found in the LICENSE file. */ export enum GrantStatus { PERMISSION_BLOCKED = 'blocked', PERMISSION_GRANTED = 'granted', PERMISSION_UNAVAILABLE = 'unavailable', PERMISSION_DENIED = 'denied', } export type NotificationsResponse = { status: string; settings: Object; };