Skip to content

Commit 764aa20

Browse files
committed
fix: export * instead of named export
1 parent e9367a4 commit 764aa20

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

src/index.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ import { UserApi } from './api/user/client'
44
import { RestClient } from './core/rest-client'
55
import type { Options } from './typings/lib'
66

7-
export { HttpError, FormatError, ServerError, TokenError } from './errors'
8-
export type { System, User, Session, UserStatus, DealStatus, PaymentStatus, PaymentType, DealCurrency, Options, HttpMethod, GetCourseAction, RequestInit, JSONValue, RequireAtLeastOne, ExportApiResponse, ImportApiResponse } from './typings'
9-
export type { RequestExportUsers, RequestExportGroups, RequestExportGroupsUsers, RequestExportPayments, RequestExportDeals, ExportInfo, FieldInfo, ExportedData } from './api/account'
10-
export type { RequestAddUser, RequestUpdateUserGroups, ResponseUser } from './api/user'
11-
export type { RequestAddDeal, RequestUpdateDealStatus, ResponseDeal } from './api/deal'
7+
export * from './errors'
8+
export type * from './typings'
9+
export type * from './api/account'
10+
export type * from './api/user'
11+
export type * from './api/deal'
1212

1313
export class GetCourse {
1414
private rest: RestClient

0 commit comments

Comments
 (0)