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