mirror of
https://github.com/tribufu/tribufu-js
synced 2026-05-06 06:47:27 +00:00
9 lines
245 B
TypeScript
9 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;
|
|
}
|