@react-native-ohos/react-native-permissions
Version:
An unified permissions API for React Native on HarmonyOS
20 lines (15 loc) • 443 B
text/typescript
/*
* 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;
};