import {model, Schema } from "mongoose"; export interface MainimgType { theme: string; city: string; url: string; title: string; } const MainimgSchema = new Schema({ theme: { type: String, }, city: { type: String, }, url : { type: String, }, title: { type: String, required: true, }, }); export default model("Mainimg", MainimgSchema);