UNPKG

@caidrive/shared

Version:

caidrive.shared.components

19 lines (18 loc) 236 B
import { KeyValuePairs } from "../../core"; /** * */ export interface JWTClaims extends KeyValuePairs { } /** * */ export type JWToken = string; /** * */ export type RefreshToken = string; /** * */ export type Session = string;