UNPKG

@sectester/core

Version:

The core package can be used to obtain a config including credentials from different sources, and provide a simplified abstraction to handle events and commands.

10 lines (9 loc) 244 B
export interface CredentialsOptions { readonly token: string; } export declare class Credentials { private readonly TOKEN_VALIDATION_REGEXP; private _token; get token(): string; constructor({ token }: CredentialsOptions); }