optix
Version:
Optix is a data manipulation library that provides optics-like capabilites with a simpler syntax. It features robust Typescript support with minimal type annotations and is smaller and faster than true optics libraries.
11 lines (10 loc) • 411 B
TypeScript
import { Get, Set, Update, Remove, PolySet, PolyUpdate, PolyRemove } from "./types";
export * from "./core";
export declare const get: Get;
export declare const set: Set;
export declare const update: Update;
export declare const remove: Remove;
export declare const polySet: PolySet;
export declare const polyUpdate: PolyUpdate;
export declare const polyRemove: PolyRemove;
export * from "./queries";