Skip to content

twitterProfileSchema

const twitterProfileSchema: ZodObject<{ author: ZodString; avatar: ZodOptional<ZodString>; banner: ZodOptional<ZodObject<{ alt: ZodString; height: ZodNumber; src: ZodString; width: ZodNumber; }, $strip>>; bio: ZodOptional<ZodString>; followers: ZodOptional<ZodUnion<readonly [ZodNumber, ZodString]>>; following: ZodOptional<ZodUnion<readonly [ZodNumber, ZodString]>>; handle: ZodString; joined: ZodOptional<ZodString>; location: ZodOptional<ZodString>; posts: ZodOptional<ZodUnion<readonly [ZodNumber, ZodString]>>; url: ZodOptional<ZodURL>; verified: ZodOptional<ZodBoolean>; website: ZodOptional<ZodObject<{ label: ZodString; url: ZodURL; }, $strip>>; }, $strip>