@qelos/auth
Version:
Express Passport authentication service
18 lines (17 loc) • 458 B
TypeScript
import mongoose, { Schema } from 'mongoose';
declare const UserInternalMetadata: mongoose.Model<{
metadata?: any;
user: Schema.Types.ObjectId;
tenant: string;
}, {}, {}, {}, mongoose.Document<unknown, {}, {
metadata?: any;
user: Schema.Types.ObjectId;
tenant: string;
}> & {
metadata?: any;
user: Schema.Types.ObjectId;
tenant: string;
} & {
_id: mongoose.Types.ObjectId;
}, any>;
export default UserInternalMetadata;