mirror of
https://github.com/captbaritone/webamp.git
synced 2026-01-24 02:36:00 +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;
|
|
}
|