import { Model, Optional } from "sequelize";
export interface ITokenAttributes {
    id: string;
    projectId: string;
    userId: string;
    refreshToken: string | null;
    createdAt: Date;
    updatedAt: Date;
}
export interface ITokenCreationAttributes extends Optional<ITokenAttributes, "id" | "createdAt" | "updatedAt" | "refreshToken"> {
}
export default interface IToken extends Model<ITokenAttributes, ITokenCreationAttributes>, ITokenAttributes {
}
