···22import { CommonClientConfig, CommonClientData, CommonClientOptions } from "./index.js"
3344export interface TealData extends RequestRetryOptions {
55-}
66-77-export interface TealClientData extends TealData, CommonClientData {
88- /**
55+ /**
96 * The base URI of the Multi-Scrobbler to use for ATProto OAuth
107 *
118 * Only include this if you want to use OAuth. The URI must be a non-IP/non-local domain using https: protocol.
···2825 appPassword?: string
2926}
30272828+export interface TealClientData extends TealData, CommonClientData {
2929+3030+}
3131export interface TealClientConfig extends CommonClientConfig {
3232 /**
3333- * Should always be `client` when using Koito as a client
3333+ * Should always be `client` when using Tealfm as a client
3434 *
3535 * @default client
3636 * @examples ["client"]
···4040 options?: TealClientOptions
4141}
42424343-export interface TealClientOptions extends CommonClientOptions {
4343+export interface TealOptions {
4444 /** The [PDS (Personal Data Server)](https://github.com/bluesky-social/pds) to use
4545 *
4646 * @default "https://bsky.social"
4747 * @examples ["https://bsky.social"]
4848 */
4949 pds?: string
5050+}
5151+5252+5353+export interface TealClientOptions extends TealOptions,CommonClientOptions {
5454+5055}
51565257export interface TealClientAIOConfig extends TealClientConfig {