flow.d.ts 315 B

123456789
  1. type Flow = {
  2. set(key: string, normalize?: any, callback?: any): Flow;
  3. setAsync(key: string, normalize?: any, callback?: any): Promise<Flow>;
  4. };
  5. /**
  6. * @todo Combine with the `Container` util
  7. */
  8. export declare function flow(target: Record<keyof any, any>, source: Record<keyof any, any>): Flow;
  9. export {};