4 lines
160 B
TypeScript
4 lines
160 B
TypeScript
import type { StateUpdate } from './types';
|
|
declare const handleStateChangeOnClient: (newState: StateUpdate) => void;
|
|
export default handleStateChangeOnClient;
|