mirror of
https://github.com/tribufu/sdk-js
synced 2025-06-16 02:34:19 +00:00
10 lines
245 B
TypeScript
10 lines
245 B
TypeScript
// Copyright (c) Tribufu. All Rights Reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
export interface TribufuApiOptions {
|
|
apiKey?: string | null;
|
|
accessToken?: string | null;
|
|
refreshToken?: string | null;
|
|
expiresIn?: number | null;
|
|
}
|