mirror of
https://github.com/tribufu/tribufu-js
synced 2026-05-18 09:35:44 +00:00
31 lines
708 B
TypeScript
31 lines
708 B
TypeScript
// Copyright (c) Tribufu. All Rights Reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
import {
|
|
TRIBUFU_API_URL,
|
|
TRIBUFU_CDN_URL,
|
|
TRIBUFU_VERSION,
|
|
TRIBUFU_WEB_URL,
|
|
} from "./constants";
|
|
|
|
import { TribufuApi } from "./api";
|
|
import { TribufuApiOptions } from "./options";
|
|
import { TribufuApiSingleton } from "./api/singletion";
|
|
|
|
export {
|
|
TRIBUFU_API_URL,
|
|
TRIBUFU_CDN_URL,
|
|
TRIBUFU_VERSION,
|
|
TRIBUFU_WEB_URL,
|
|
TribufuApi,
|
|
TribufuApiOptions,
|
|
TribufuApiSingleton,
|
|
};
|
|
|
|
export * from "./api/base";
|
|
export * from "./api/generated";
|
|
export * from "./api/include";
|
|
export * from "./api/index";
|
|
export * from "./api/singletion";
|
|
export * from "./http/headers";
|
|
export * from "./node";
|