Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Update index.ts due to build errors on imported types #30

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -189,16 +189,16 @@ export namespace Groq {
export import toFile = Uploads.toFile;
export import fileFromPath = Uploads.fileFromPath;

export import RequestOptions = Core.RequestOptions;
export type RequestOptions = Core.RequestOptions;

export import Chat = API.Chat;
export type Chat = API.Chat;

export import Audio = API.Audio;
export import Translation = API.Translation;
export type Audio = API.Audio;
export type Translation = API.Translation;

export import Models = API.Models;
export import Model = API.Model;
export import ModelList = API.ModelList;
export type Models = API.Models;
export type Model = API.Model;
export type ModelList = API.ModelList;
}

export default Groq;