You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
452 B
14 lines
452 B
export type EventSwcLoadFailure = {
|
|
eventName: string;
|
|
payload: {
|
|
platform: string;
|
|
arch: string;
|
|
nodeVersion: string;
|
|
nextVersion: string;
|
|
wasm?: 'enabled' | 'fallback' | 'failed';
|
|
glibcVersion?: string;
|
|
installedSwcPackages?: string;
|
|
nativeBindingsErrorCode?: string;
|
|
};
|
|
};
|
|
export declare function eventSwcLoadFailure(event?: EventSwcLoadFailure['payload']): Promise<void>;
|
|
|