@ossido-labs/ossido-ui 0.1.4 → 0.1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -77,7 +77,7 @@ declare class DevErrorStore {
|
|
|
77
77
|
getServerSnapshot: () => DevErrorState;
|
|
78
78
|
private commit;
|
|
79
79
|
/** Add (or refresh) a JS error. Returns its id so the reporter can remove it. */
|
|
80
|
-
addJsError: (kind: Exclude<DevErrorKind,
|
|
80
|
+
addJsError: (kind: Exclude<DevErrorKind, 'build'>, error: Error, reset?: () => void) => number;
|
|
81
81
|
/** Report a Vite build error — replaces any previous one. */
|
|
82
82
|
addBuildError: (build: DevBuildError) => number;
|
|
83
83
|
/** Clear the current build error (called when Vite reports a successful update). */
|