@graphql-tools/load
Version:
A set of utils for faster development of GraphQL tools
10 lines (9 loc) • 386 B
TypeScript
import pLimit from 'p-limit';
/**
* Converts a string to 32bit integer
*/
export declare function stringToHash(str: string): number;
export type StackNext = () => void;
export 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;