import { Types } from "mongoose";

export interface ISmartcarOAuthBridgeState {
  stateToken: string;
  userId: Types.ObjectId;
  expiresAt: Date;
}
