mirror of
https://github.com/Tribufu/TribufuJS
synced 2026-08-08 04:11:06 +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;
|
|
}
|