mirror of
https://github.com/tribufu/tribufu-js
synced 2026-06-01 09:42:36 +00:00
Update index.ts
This commit is contained in:
parent
9668e13f5e
commit
6e333643e5
1 changed files with 46 additions and 7 deletions
53
src/index.ts
53
src/index.ts
|
|
@ -1,12 +1,10 @@
|
||||||
// Copyright (c) Tribufu. All Rights Reserved.
|
// Copyright (c) Tribufu. All Rights Reserved.
|
||||||
|
|
||||||
import { TRIBUFU_VERSION, TRIBUFU_API_URL, TRIBUFU_CDN_URL } from "./constants";
|
import {
|
||||||
import { TribufuApi } from "./api";
|
TRIBUFU_VERSION,
|
||||||
import { TribufuApiOptions } from "./options";
|
TRIBUFU_API_URL,
|
||||||
import { TribufuBot } from "./bot";
|
TRIBUFU_CDN_URL
|
||||||
import { TribufuClient } from "./client";
|
} from "./constants";
|
||||||
import { TribufuServer } from "./server";
|
|
||||||
import { TribufuHttp, TribufuHttpOptions } from "./http";
|
|
||||||
|
|
||||||
export {
|
export {
|
||||||
TRIBUFU_API_URL,
|
TRIBUFU_API_URL,
|
||||||
|
|
@ -14,6 +12,17 @@ export {
|
||||||
TRIBUFU_VERSION,
|
TRIBUFU_VERSION,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
import { TribufuApi } from "./api";
|
||||||
|
import { TribufuApiOptions } from "./options";
|
||||||
|
import { TribufuBot } from "./bot";
|
||||||
|
import { TribufuClient } from "./client";
|
||||||
|
import { TribufuServer } from "./server";
|
||||||
|
|
||||||
|
import {
|
||||||
|
TribufuHttp,
|
||||||
|
TribufuHttpOptions
|
||||||
|
} from "./http";
|
||||||
|
|
||||||
export {
|
export {
|
||||||
TribufuApi,
|
TribufuApi,
|
||||||
TribufuApiOptions,
|
TribufuApiOptions,
|
||||||
|
|
@ -23,3 +32,33 @@ export {
|
||||||
TribufuHttpOptions,
|
TribufuHttpOptions,
|
||||||
TribufuServer,
|
TribufuServer,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
import {
|
||||||
|
OAuth2AuthorizeRequest,
|
||||||
|
OAuth2ClientType,
|
||||||
|
OAuth2CodeResponse,
|
||||||
|
OAuth2GrantType,
|
||||||
|
OAuth2IntrospectionRequest,
|
||||||
|
OAuth2IntrospectionResponse,
|
||||||
|
OAuth2ResponseType,
|
||||||
|
OAuth2RevokeRequest,
|
||||||
|
OAuth2TokenHintType,
|
||||||
|
OAuth2TokenRequest,
|
||||||
|
OAuth2TokenResponse,
|
||||||
|
OAuth2TokenType
|
||||||
|
} from "./oauth2";
|
||||||
|
|
||||||
|
export {
|
||||||
|
OAuth2AuthorizeRequest,
|
||||||
|
OAuth2ClientType,
|
||||||
|
OAuth2CodeResponse,
|
||||||
|
OAuth2GrantType,
|
||||||
|
OAuth2IntrospectionRequest,
|
||||||
|
OAuth2IntrospectionResponse,
|
||||||
|
OAuth2ResponseType,
|
||||||
|
OAuth2RevokeRequest,
|
||||||
|
OAuth2TokenHintType,
|
||||||
|
OAuth2TokenRequest,
|
||||||
|
OAuth2TokenResponse,
|
||||||
|
OAuth2TokenType
|
||||||
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue