Interface TokenCacheInterface

interface TokenCacheInterface {
    [hostKey: string]: {
        [realmKey: string]: {
            [typeKey in keyof typeKey]: {
                [subjectKey: string]: {
                    [expKey: string]: string;
                };
            }
        };
    };
}

Indexable

[hostKey: string]: {
    [realmKey: string]: {
        [typeKey in keyof typeKey]: {
            [subjectKey: string]: {
                [expKey: string]: string;
            };
        }
    };
}
  • [realmKey: string]: {
        [typeKey in keyof typeKey]: {
            [subjectKey: string]: {
                [expKey: string]: string;
            };
        }
    }