@antv/g2
Version:
the Grammar of Graphics in Javascript
10 lines (9 loc) • 315 B
TypeScript
type Flow = {
set(key: string, normalize?: any, callback?: any): Flow;
setAsync(key: string, normalize?: any, callback?: any): Promise<Flow>;
};
/**
* @todo Combine with the `Container` util
*/
export declare function flow(target: Record<keyof any, any>, source: Record<keyof any, any>): Flow;
export {};