react-simple-game-engine
Version:
[WIP] not able to use in currently. <!-- Document cumming soon... -->
9 lines • 376 B
TypeScript
import { ReactNode } from "react";
declare type WatcherProps<IV> = {
names: string | string[];
initialValues: IV;
children: (value: IV) => ReactNode;
};
export declare function Watcher<IV extends Record<string, any> = Record<string, any>>({ names: _names, children, initialValues, }: WatcherProps<IV>): JSX.Element;
export {};
//# sourceMappingURL=watcher.d.ts.map