Type Alias AdminSelectContentResponse

AdminSelectContentResponse: {
    content?: (SelectedFile | SelectedPage)[];
    user_action: "cancelled" | "selected";
}

Represents a response to a content selection request.

Type declaration

  • Optionalcontent?: (SelectedFile | SelectedPage)[]

    Selected content, if any.

  • user_action: "cancelled" | "selected"

    Action taken by the user.