All checks were successful
Publish To Prod / deploy_and_publish (push) Successful in 35s
8 lines
280 B
TypeScript
8 lines
280 B
TypeScript
import { Action } from '../interfaces';
|
|
export declare type State = string[];
|
|
export interface DirtyHandlerIdPayload {
|
|
targetIds: string[];
|
|
prevTargetIds: string[];
|
|
}
|
|
export declare function reduce(_state: State | undefined, action: Action<DirtyHandlerIdPayload>): State;
|