UNPKG

@graphql-tools/load

Version:

A set of utils for faster development of GraphQL tools

10 lines (9 loc) 402 B
import pLimit from 'p-limit'; /** * Converts a string to 32bit integer */ export declare function stringToHash(str: string): number; export declare type StackNext = () => void; export declare type StackFn<T> = (input: T, next: StackNext) => void; export declare function useStack<T>(...fns: Array<StackFn<T>>): (input: T) => void; export declare function useLimit(concurrency: number): pLimit.Limit;