pl-api
    Preparing search index...

    Variable searchSchemaConst

    searchSchema: ObjectSchema<
        {
            accounts: SchemaWithPipe<
                readonly [
                    SchemaWithFallback<ArraySchema<AnySchema, undefined>, readonly []>,
                    TransformAction<any[], Account[]>,
                ],
            >;
            groups: SchemaWithPipe<
                readonly [
                    SchemaWithFallback<ArraySchema<AnySchema, undefined>, readonly []>,
                    TransformAction<
                        any[],
                        {
                            avatar: string;
                            avatar_description: string;
                            avatar_static: string;
                            created_at: string;
                            display_name: string;
                            domain: string;
                            emojis: {
                                category: null
                                | string;
                                shortcode: string;
                                static_url: string;
                                url: string;
                                visible_in_picker: boolean;
                            }[];
                            header: string;
                            header_description: string;
                            header_static: string;
                            id: string;
                            locked: boolean;
                            members_count: number;
                            membership_required: boolean;
                            note: string;
                            owner: null
                            | { id: string };
                            relationship:
                                | null
                                | {
                                    id: string;
                                    member: boolean;
                                    requested: boolean;
                                    role: GroupRoles;
                                };
                            statuses_visibility: string;
                            uri: string;
                            url: string;
                        }[],
                    >,
                ],
            >;
            hashtags: SchemaWithPipe<
                readonly [
                    SchemaWithFallback<ArraySchema<AnySchema, undefined>, readonly []>,
                    TransformAction<
                        any[],
                        {
                            following?: boolean;
                            history: null
                            | { accounts: number; day: number; uses: number }[];
                            name: string;
                            total: null | number;
                            url: string;
                        }[],
                    >,
                ],
            >;
            statuses: SchemaWithPipe<
                readonly [
                    SchemaWithFallback<ArraySchema<AnySchema, undefined>, readonly []>,
                    TransformAction<any[], Status[]>,
                ],
            >;
        },
        undefined,
    > = ...