social bookmarking for atproto
1/*
2 * clippr: a social bookmarking service for the AT Protocol
3 * Copyright (c) 2025 clippr contributors.
4 * SPDX-License-Identifier: AGPL-3.0-only
5 */
6
7export type ErrorResponse = {
8 error: string;
9 message: string;
10};
11
12export type ProfileViewQuery = Object & {
13 did: string;
14 handle: string;
15 displayName: string;
16 avatar: string;
17 description: string;
18 createdAt: string;
19};