-
Notifications
You must be signed in to change notification settings - Fork 0
Update config.ts #3
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,6 +16,7 @@ | |
export namespace Config { | ||
export type BaseRequestConfig = RequestConfig; | ||
export type Error = AxiosError | HttpException; | ||
export type Blah = BlahBlu | Foo; | ||
Check failure on line 19 in src/config.ts GitHub Actions / Build (18.x)
Check failure on line 19 in src/config.ts GitHub Actions / Build (18.x)
Check failure on line 19 in src/config.ts GitHub Actions / Build (20.x)
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fix undefined type references that break compilation. The type alias references You need to either:
- export type Blah = BlahBlu | Foo; Or if these types should exist, import them: + import { BlahBlu, Foo } from './path-to-types';
export type Blah = BlahBlu | Foo; 📝 Committable suggestion
Suggested change
exporttypeBlah=BlahBlu|Foo;
import{BlahBlu,Foo}from'./path-to-types';
export type Blah = BlahBlu | Foo;
🧰 Tools🪛 GitHub Check: Build (18.x)[failure] 19-19: [failure] 19-19: 🪛 GitHub Check: Build (20.x)[failure] 19-19: [failure] 19-19: 🪛 GitHub Actions: CI[error] 19-19: TypeScript error TS2304: Cannot find name 'BlahBlu'. 🤖 Prompt for AI Agents
|
||
|
||
export type Authentication = UtilityTypes.XOR3< | ||
{ | ||
|