veboundary
Version:
Simple and convenient Vue error boundary.
10 lines (9 loc) • 320 B
TypeScript
import { Ref } from 'vue-demi';
type DevtoolsState = {
error: Ref<Error | null>;
info: Ref<string>;
};
export declare function refreshInspector(): void;
export declare function registerDevtools(arg: DevtoolsState): void;
export declare function addTimeline(id: string | null, groupId?: string): void;
export {};