mirror of
https://github.com/Tribufu/TribufuJS
synced 2026-08-08 20:31:05 +00:00
26 lines
548 B
TypeScript
26 lines
548 B
TypeScript
// Copyright (c) Tribufu. All Rights Reserved.
|
|
// SPDX-License-Identifier: MIT AND Apache-2.0
|
|
|
|
/**
|
|
* The version of the Tribufu SDK.
|
|
* @type {string}
|
|
*/
|
|
export const TRIBUFU_VERSION = "0.1.13";
|
|
|
|
/**
|
|
* The default Tribufu API URL.
|
|
* @type {string}
|
|
*/
|
|
export const TRIBUFU_API_URL = "https://api.tribufu.com";
|
|
|
|
/**
|
|
* The default Tribufu WEB URL.
|
|
* @type {string}
|
|
*/
|
|
export const TRIBUFU_WEB_URL = "https://www.tribufu.com";
|
|
|
|
/**
|
|
* The default Tribufu CDN URL.
|
|
* @type {string}
|
|
*/
|
|
export const TRIBUFU_CDN_URL = "https://cdn.tribufu.com";
|