UNPKG

movex-core-util

Version:

Movex Core Util is the library of utilities for Movex

4 lines (3 loc) 250 B
import type { CheckedState } from './core-types'; export declare const computeCheckedState: <T>(state: T) => CheckedState<T>; export declare const checkedStateEquals: <A extends CheckedState<any>, B extends CheckedState<any>>(a: A, b: B) => boolean;