Interface AppRepository

interface AppRepository {
    create(
        params: CreateAppParams,
        meta?: HttpMetaParams<"json">,
    ): Promise<mastodon.v1.Client>;
    verifyCredentials(
        meta?: HttpMetaParams<"none">,
    ): Promise<mastodon.v1.Client>;
}

Methods