@fjell/core
Version:
Core Item and Key Framework for Fjell
27 lines (26 loc) • 1.1 kB
TypeScript
/**
* Wrapper for facet() operation
*
* Provides automatic validation for facet() operation parameters.
*/
import { Coordinate, FacetOperationMethod } from "@fjell/types";
import type { WrapperOptions } from "./types";
/**
* Creates a wrapped facet() 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 facet() method
*
* @example
* ```typescript
* const facet = createFacetWrapper(
* coordinate,
* async (key, facet, params) => {
* return await database.executeFacet(key, facet, params);
* }
* );
* ```
*/
export declare function createFacetWrapper<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<S, L1, L2, L3, L4, L5>, implementation: FacetOperationMethod<S, L1, L2, L3, L4, L5>, options?: WrapperOptions): FacetOperationMethod<S, L1, L2, L3, L4, L5>;