mirror of
https://github.com/yume-chan/ya-webadb.git
synced 2025-10-05 02:39:26 +02:00
8 lines
253 B
TypeScript
8 lines
253 B
TypeScript
import type { Init } from "./init.js";
|
|
import { PrevImpl } from "./prev.js";
|
|
|
|
export const SerializeOrder = /* #__PURE__ */ (() =>
|
|
[
|
|
...PrevImpl.SerializeOrder,
|
|
"powerOffOnClose",
|
|
] as const satisfies readonly (keyof Init)[])();
|