diff --git a/src/index.ts b/src/index.ts index 8e0bc78..a2361c8 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,2 +1,11 @@ export { Airtable } from "./airtable"; +export type { AirtableBase } from "./base"; +export type { AirtableTable } from "./table"; +export type { AirtableQuery } from "./query"; +export type { AirtableRecord } from "./record"; +export type { AirtableComment } from "./comment"; +export type { AirtableError } from "./error"; +export type { AirtableCommentQuery } from "./comment-query"; +export type { RetryDelayOption } from "./retry"; + export type * from "./types";