/** * Wrapper for allAction() operation * * Provides automatic validation for allAction() operation parameters. */ import { AllActionOperationMethod, Coordinate, Item } from "@fjell/types"; import type { WrapperOptions } from "./types"; /** * Creates a wrapped allAction() method with automatic parameter validation. * * @param coordinate - The coordinate defining the item hierarchy * @param implementation - The core logic for the operation * @param options - Optional configuration * @returns A fully validated allAction() method * * @example * ```typescript * const allAction = createAllActionWrapper( * coordinate, * async (action, params, locations) => { * return await database.executeAllAction(action, params, locations); * } * ); * ``` */ export declare function createAllActionWrapper, S extends string, L1 extends string = never, L2 extends string = never, L3 extends string = never, L4 extends string = never, L5 extends string = never>(coordinate: Coordinate, implementation: AllActionOperationMethod, options?: WrapperOptions): AllActionOperationMethod;