pl4y-data-library
Version:
This library contains the dtos, enums, schemas, and other data objects needed in the pl4y ecosystem.
33 lines (32 loc) • 769 B
TypeScript
import * as mongoose from "mongoose";
export declare const SecretsSchema: mongoose.Schema<any, mongoose.Model<any, any, any, any, any, any>, {}, {}, {}, {}, {
timestamps: true;
toJSON: {
virtuals: true;
};
toObject: {
virtuals: true;
};
}, {
createdAt: NativeDate;
updatedAt: NativeDate;
} & {
jwtSecret: string;
jwtRefreshSecret: string;
}, mongoose.Document<unknown, {}, mongoose.FlatRecord<{
createdAt: NativeDate;
updatedAt: NativeDate;
} & {
jwtSecret: string;
jwtRefreshSecret: string;
}>> & mongoose.FlatRecord<{
createdAt: NativeDate;
updatedAt: NativeDate;
} & {
jwtSecret: string;
jwtRefreshSecret: string;
}> & {
_id: mongoose.Types.ObjectId;
} & {
__v: number;
}>;