react-native-notificare
Version:
Notificare React Native module.
11 lines (9 loc) • 316 B
text/typescript
import type { NotificareDoNotDisturb } from './notificare-do-not-disturb';
export interface NotificareDevice {
readonly id: string;
readonly userId?: string;
readonly userName?: string;
readonly timeZoneOffset: number;
readonly dnd?: NotificareDoNotDisturb;
readonly userData: Record<string, string>;
}