1 | import type { WorkletStackDetails } from './commonTypes';
|
2 | type ReanimatedError = Error & 'ReanimatedError';
|
3 | interface ReanimatedErrorConstructor extends Error {
|
4 | new (message?: string): ReanimatedError;
|
5 | (message?: string): ReanimatedError;
|
6 | readonly prototype: ReanimatedError;
|
7 | }
|
8 | declare const ReanimatedErrorConstructor: ReanimatedErrorConstructor;
|
9 | export { ReanimatedErrorConstructor as ReanimatedError };
|
10 |
|
11 |
|
12 |
|
13 |
|
14 | export declare function registerReanimatedError(): void;
|
15 | export declare function registerWorkletStackDetails(hash: number, stackDetails: WorkletStackDetails): void;
|
16 | export declare function reportFatalErrorOnJS({ message, stack, }: {
|
17 | message: string;
|
18 | stack?: string;
|
19 | }): void;
|
20 |
|
\ | No newline at end of file |