better-buddy-share-backend
    Preparing search index...

    Type Alias RefreshToken

    type RefreshToken = {
        expiresAt: Date;
        id: string;
        issuedAt: Date;
        replacedById: string | null;
        revokedAt: Date | null;
        sessionId: string;
        tokenHash: string;
        usedAt: Date | null;
        userId: number;
    }
    Index

    Properties

    expiresAt: Date
    id: string
    issuedAt: Date
    replacedById: string | null
    revokedAt: Date | null
    sessionId: string
    tokenHash: string
    usedAt: Date | null
    userId: number