Files
sdk-js/src/index.ts
2024-10-18 13:18:48 -03:00

32 lines
720 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/api.base";
export * from "./api/api.generated";
export * from "./api/api.include";
export * from "./api/index";
export * from "./api/singletion";
export * from "./http/headers";
export * from "./node";