/* tslint:disable */ /** * This file was automatically generated by Payload CMS. * DO NOT MODIFY IT BY HAND. Instead, modify your source Payload config, * and re-run `payload generate:types` to regenerate this file. */ export interface Config { collections: { posts: Post; users: User; media: Media; }; globals: {}; } export interface Post { id: string; title?: string; publishedDate?: string; content?: { [k: string]: unknown; }[]; status?: 'draft' | 'published'; updatedAt: string; createdAt: string; } export interface User { id: string; name?: string; updatedAt: string; createdAt: string; email?: string; resetPasswordToken?: string; resetPasswordExpiration?: string; loginAttempts?: number; lockUntil?: string; password?: string; } export interface Media { id: string; updatedAt: string; createdAt: string; url?: string; filename?: string; mimeType?: string; filesize?: number; width?: number; height?: number; }