collections: {
    memes: CollectionConfig<
        ZodObject<
            {
                description: ZodOptional<ZodString>;
                know_your_meme: ZodOptional<ZodString>;
                nsfw: ZodOptional<ZodBoolean>;
                path: ZodString;
                slug: ZodString;
                tags: ZodOptional<ZodArray<ZodString, "many">>;
                title: ZodString;
            },
            "strip",
            ZodTypeAny,
            {
                description?: string;
                know_your_meme?: string;
                nsfw?: boolean;
                path: string;
                slug: string;
                tags?: string[];
                title: string;
            },
            {
                description?: string;
                know_your_meme?: string;
                nsfw?: boolean;
                path: string;
                slug: string;
                tags?: string[];
                title: string;
            },
        >,
    >;
    socials: CollectionConfig<
        ZodObject<
            Required<
                {
                    href?: ZodType<
                        undefined
                        | Maybe<string>,
                        any,
                        undefined | Maybe<string>,
                    >;
                    iconifyIcon?: ZodType<
                        undefined
                        | Maybe<SocialsIconifyIcon>,
                        any,
                        undefined | Maybe<SocialsIconifyIcon>,
                    >;
                    image?: ZodType<
                        undefined
                        | Maybe<string>,
                        any,
                        undefined | Maybe<string>,
                    >;
                    title?: ZodType<
                        undefined
                        | Maybe<string>,
                        any,
                        undefined | Maybe<string>,
                    >;
                },
            >,
            UnknownKeysParam,
            ZodTypeAny,
            {
                href?: Maybe<string>;
                iconifyIcon?: Maybe<SocialsIconifyIcon>;
                image?: Maybe<string>;
                title?: Maybe<string>;
            },
            {
                href?: Maybe<string>;
                iconifyIcon?: Maybe<SocialsIconifyIcon>;
                image?: Maybe<string>;
                title?: Maybe<string>;
            },
        >,
    >;
} = ...

Type declaration

  • memes: CollectionConfig<
        ZodObject<
            {
                description: ZodOptional<ZodString>;
                know_your_meme: ZodOptional<ZodString>;
                nsfw: ZodOptional<ZodBoolean>;
                path: ZodString;
                slug: ZodString;
                tags: ZodOptional<ZodArray<ZodString, "many">>;
                title: ZodString;
            },
            "strip",
            ZodTypeAny,
            {
                description?: string;
                know_your_meme?: string;
                nsfw?: boolean;
                path: string;
                slug: string;
                tags?: string[];
                title: string;
            },
            {
                description?: string;
                know_your_meme?: string;
                nsfw?: boolean;
                path: string;
                slug: string;
                tags?: string[];
                title: string;
            },
        >,
    >
  • socials: CollectionConfig<
        ZodObject<
            Required<
                {
                    href?: ZodType<
                        undefined
                        | Maybe<string>,
                        any,
                        undefined | Maybe<string>,
                    >;
                    iconifyIcon?: ZodType<
                        undefined
                        | Maybe<SocialsIconifyIcon>,
                        any,
                        undefined | Maybe<SocialsIconifyIcon>,
                    >;
                    image?: ZodType<
                        undefined
                        | Maybe<string>,
                        any,
                        undefined | Maybe<string>,
                    >;
                    title?: ZodType<
                        undefined
                        | Maybe<string>,
                        any,
                        undefined | Maybe<string>,
                    >;
                },
            >,
            UnknownKeysParam,
            ZodTypeAny,
            {
                href?: Maybe<string>;
                iconifyIcon?: Maybe<SocialsIconifyIcon>;
                image?: Maybe<string>;
                title?: Maybe<string>;
            },
            {
                href?: Maybe<string>;
                iconifyIcon?: Maybe<SocialsIconifyIcon>;
                image?: Maybe<string>;
                title?: Maybe<string>;
            },
        >,
    >