All checks were successful
Publish To Prod / deploy_and_publish (push) Successful in 35s
11 lines
344 B
TypeScript
11 lines
344 B
TypeScript
import { XYCoord, Action } from '../interfaces';
|
|
export interface State {
|
|
initialSourceClientOffset: XYCoord | null;
|
|
initialClientOffset: XYCoord | null;
|
|
clientOffset: XYCoord | null;
|
|
}
|
|
export declare function reduce(state: State | undefined, action: Action<{
|
|
sourceClientOffset: XYCoord;
|
|
clientOffset: XYCoord;
|
|
}>): State;
|