mirror of
https://github.com/nodejs/node.git
synced 2025-08-15 13:48:44 +02:00

- Add typings for `async_context_frame`, `icu`, and `sea` bindings - Add a few missing exports on other bindings - Add a few missing primordials PR-URL: https://github.com/nodejs/node/pull/59176 Reviewed-By: Zeyu "Alex" Yang <himself65@outlook.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
5 lines
147 B
TypeScript
5 lines
147 B
TypeScript
export interface SeaBinding {
|
|
getAsset(key: string): ArrayBuffer | undefined;
|
|
isExperimentalSeaWarningNeeded(): boolean;
|
|
isSea(): boolean;
|
|
}
|