How to create unique fields with ottoman like mongoosejs

How to create unique fields with ottomanjs like above

import { Schema } from "mongoose";

const userSchema = new Schema({
  username: { type: String, unique: true },
  email: { type: String, unique: true },
});