mirror of
https://github.com/wavetermdev/waveterm
synced 2026-05-05 06:29:02 +00:00
12 lines
312 B
TypeScript
12 lines
312 B
TypeScript
// Copyright 2025, Command Line Inc.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
import { LayoutNode, LayoutTreeState } from "../lib/types";
|
|
|
|
export function newLayoutTreeState(rootNode: LayoutNode): LayoutTreeState {
|
|
return {
|
|
rootNode,
|
|
generation: 0,
|
|
pendingBackendActions: [],
|
|
};
|
|
}
|