UNPKG

@envelop/depth-limit

Version:
7 lines (6 loc) 200 B
import type { Plugin } from '@envelop/core'; export type DepthLimitConfig = { maxDepth: number; ignore?: string[]; }; export declare const useDepthLimit: (config: DepthLimitConfig) => Plugin;