+8
utils/types.ts
+8
utils/types.ts
···
1
import type { AppBskyNotificationListNotifications } from "@atproto/api";
2
3
export type Notification = AppBskyNotificationListNotifications.Notification;
4
+
5
+
export type memoryBlock = {
6
+
label: string;
7
+
description: string;
8
+
readOnly: boolean;
9
+
limit: number;
10
+
value: string;
11
+
};