3 lines
134 B
TypeScript
3 lines
134 B
TypeScript
import { PatchFn } from "./types.js";
|
|
export declare function sequence<T>(...methods: Array<PatchFn<T>>): (...args: Array<any>) => T;
|