/* * clippr: a social bookmarking service for the AT Protocol * Copyright (c) 2025 clippr contributors. * SPDX-License-Identifier: AGPL-3.0-only */ export type ErrorResponse = { error: string; message: string; }; export type ProfileViewQuery = Object & { did: string; handle: string; displayName: string; avatar: string; description: string; createdAt: string; }