-
Notifications
You must be signed in to change notification settings - Fork 890
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: use type imports for type-only imports (#1159)
- Loading branch information
1 parent
622c80a
commit 6421d69
Showing
40 changed files
with
1,307 additions
and
884 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. | ||
|
||
export { AudioModel, AudioResponseFormat, Audio } from './audio'; | ||
export { SpeechModel, SpeechCreateParams, Speech } from './speech'; | ||
export { Audio, type AudioModel, type AudioResponseFormat } from './audio'; | ||
export { Speech, type SpeechModel, type SpeechCreateParams } from './speech'; | ||
export { | ||
Transcription, | ||
TranscriptionSegment, | ||
TranscriptionVerbose, | ||
TranscriptionWord, | ||
TranscriptionCreateResponse, | ||
TranscriptionCreateParams, | ||
Transcriptions, | ||
type Transcription, | ||
type TranscriptionSegment, | ||
type TranscriptionVerbose, | ||
type TranscriptionWord, | ||
type TranscriptionCreateResponse, | ||
type TranscriptionCreateParams, | ||
} from './transcriptions'; | ||
export { | ||
Translation, | ||
TranslationVerbose, | ||
TranslationCreateResponse, | ||
TranslationCreateParams, | ||
Translations, | ||
type Translation, | ||
type TranslationVerbose, | ||
type TranslationCreateResponse, | ||
type TranslationCreateParams, | ||
} from './translations'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.