masto
    Preparing search index...

    Interface ProfileResource

    interface ProfileResource {
        avatar: ProfileAvatarResource;
        fetch: Method<Profile>;
        header: ProfileHeaderResource;
        update: Method<
            Profile,
            UpdateProfileParams,
            HttpMetaParams<"multipart-form">,
        >;
    }
    Index

    Properties

    fetch: Method<Profile>

    Get the current user's profile.

    update: Method<Profile, UpdateProfileParams, HttpMetaParams<"multipart-form">>

    Update the current user's profile.

    Parameters

    Profile