pl-api
    Preparing search index...

    Variable statusEditSchemaConst

    statusEditSchema: ObjectSchema<
        {
            account: BaseSchema<any, Account, BaseIssue<unknown>>;
            content: SchemaWithFallback<StringSchema<undefined>, "">;
            created_at: SchemaWithFallback<
                SchemaWithPipe<
                    readonly [StringSchema<undefined>, RegexAction<string, undefined>],
                >,
                string,
            >;
            emojis: SchemaWithPipe<
                readonly [
                    SchemaWithFallback<ArraySchema<AnySchema, undefined>, readonly []>,
                    TransformAction<
                        any[],
                        {
                            category: null
                            | string;
                            shortcode: string;
                            static_url: string;
                            url: string;
                            visible_in_picker: boolean;
                        }[],
                    >,
                ],
            >;
            media_attachments: SchemaWithPipe<
                readonly [
                    SchemaWithFallback<ArraySchema<AnySchema, undefined>, readonly []>,
                    TransformAction<
                        any[],
                        (
                            | {
                                blurhash: null
                                | string;
                                description: string;
                                id: string;
                                meta: {
                                    focus?: { x: ...; y: ... };
                                    original?: { aspect: ...; height: ...; size: ...; width: ... };
                                    small?: { aspect: ...; height: ...; size: ...; width: ... };
                                };
                                mime_type: null
                                | string;
                                preview_url: string;
                                remote_url: null | string;
                                type: "image";
                                url: string;
                            }
                            | {
                                blurhash: null
                                | string;
                                description: string;
                                id: string;
                                meta: {
                                    duration?: number;
                                    original?: {
                                        aspect: ...;
                                        duration: ...;
                                        frame_rate: ...;
                                        height: ...;
                                        size: ...;
                                        width: ...;
                                    };
                                    small?: { aspect: ...; height: ...; size: ...; width: ... };
                                };
                                mime_type: null
                                | string;
                                preview_url: string;
                                remote_url: null | string;
                                type: "video";
                                url: string;
                            }
                            | {
                                blurhash: null
                                | string;
                                description: string;
                                id: string;
                                meta: {
                                    duration?: number;
                                    focus?: { x: ...; y: ... };
                                    original?: { aspect: ...; height: ...; size: ...; width: ... };
                                };
                                mime_type: null
                                | string;
                                preview_url: string;
                                remote_url: null | string;
                                type: "gifv";
                                url: string;
                            }
                            | {
                                blurhash: null
                                | string;
                                description: string;
                                id: string;
                                meta: {
                                    colors?: {
                                        accent?: ...;
                                        background?: ...;
                                        duration?: ...;
                                        foreground?: ...;
                                    };
                                    duration?: number;
                                    original?: { bitrate?: ...; duration?: ... };
                                };
                                mime_type: null
                                | string;
                                preview_url: string;
                                remote_url: null | string;
                                type: "audio";
                                url: string;
                            }
                            | {
                                blurhash: null
                                | string;
                                description: string;
                                id: string;
                                mime_type: null | string;
                                preview_url: string;
                                remote_url: null | string;
                                type: "unknown";
                                url: string;
                            }
                        )[],
                    >,
                ],
            >;
            poll: SchemaWithFallback<
                NullableSchema<
                    ObjectSchema<
                        {
                            options: ArraySchema<
                                ObjectSchema<{ title: StringSchema<undefined> }, undefined>,
                                undefined,
                            >;
                        },
                        undefined,
                    >,
                    undefined,
                >,
                null,
            >;
            sensitive: SchemaWithPipe<
                readonly [UnknownSchema, TransformAction<unknown, boolean>],
            >;
            spoiler_text: SchemaWithFallback<StringSchema<undefined>, "">;
        },
        undefined,
    > = ...