fix the last of the type annotations (still have to fix no-explicit-any warnings)

This commit is contained in:
2023-09-04 08:03:43 -06:00
parent fd43da93a5
commit a5e0c847b1
9 changed files with 383 additions and 475 deletions

View File

@@ -112,12 +112,12 @@ export function didInfo(
}
}
interface SuccessResult {
export interface SuccessResult {
type: "success";
response: AxiosResponse<ClaimResult>;
}
interface ErrorResult {
export interface ErrorResult {
type: "error";
error: InternalError;
}