File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -2827,7 +2827,8 @@ interface ClientApi extends ApiMethods {
28272827 getAxiosInstance : ( ) => AxiosInstance ;
28282828}
28292829
2830- class Api extends ApiMethods implements ClientApi {
2830+ /** @public Exported for use by external consumers (e.g., VS Code extension). */
2831+ export class Api extends ApiMethods implements ClientApi {
28312832 constructor ( ) {
28322833 const scopedAxiosInstance = getConfiguredAxiosInstance ( ) ;
28332834 super ( scopedAxiosInstance ) ;
Original file line number Diff line number Diff line change @@ -31,7 +31,8 @@ export const isApiError = (err: unknown): err is ApiError => {
3131 ) ;
3232} ;
3333
34- const isApiErrorResponse = ( err : unknown ) : err is ApiErrorResponse => {
34+ /** @public Exported for use by external consumers (e.g., VS Code extension). */
35+ export const isApiErrorResponse = ( err : unknown ) : err is ApiErrorResponse => {
3536 return (
3637 typeof err === "object" &&
3738 err !== null &&
You can’t perform that action at this time.
0 commit comments