UNPKG

@factset/sdk-utils

Version:

Utilities for interacting with FactSet APIs.

10 lines (9 loc) 253 B
export declare class Token { private readonly _token; private readonly _expiresAt; constructor(token: string, expiresAt: number); get token(): string; get expiresIn(): number; get expiresAt(): number; isExpired(): boolean; }