export interface JWT {
    accessToken: string;
    tokenType: string;
    expires: Date;
    refreshToken?: string;
    scope?: Array<string>;
}
