mirror of
https://github.com/tribufu/sdk-js
synced 2025-06-16 10:44:17 +00:00
9 lines
213 B
TypeScript
9 lines
213 B
TypeScript
// Copyright (c) Tribufu. All Rights Reserved.
|
|
|
|
export interface TribufuApiOptions {
|
|
apiKey?: string | null;
|
|
accessToken?: string | null;
|
|
refreshToken?: string | null;
|
|
expiresIn?: number | null;
|
|
}
|