mirror of
https://github.com/captbaritone/webamp.git
synced 2026-07-22 17:47:16 +00:00
7 lines
148 B
TypeScript
7 lines
148 B
TypeScript
import { XmlTree } from "./types";
|
|
|
|
export default async function initializeStateTree(
|
|
xmlTree: XmlTree
|
|
): Promise<XmlTree> {
|
|
return xmlTree;
|
|
}
|