2024-06-04 13:05:44 -07:00
|
|
|
// Copyright 2024, Command Line Inc.
|
|
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
2024-08-26 16:35:35 -07:00
|
|
|
import { LayoutNode, LayoutTreeState } from "../lib/types";
|
|
|
|
|
|
|
|
|
|
export function newLayoutTreeState(rootNode: LayoutNode): LayoutTreeState {
|
|
|
|
|
return {
|
|
|
|
|
rootNode,
|
|
|
|
|
generation: 0,
|
|
|
|
|
};
|
|
|
|
|
}
|