mirror of https://github.com/ANL-CEEESA/RELOG.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
314 B
8 lines
314 B
import type { OnInit, Node, Edge } from '../types';
|
|
/**
|
|
* Hook for calling onInit handler.
|
|
*
|
|
* @internal
|
|
*/
|
|
export declare function useOnInitHandler<NodeType extends Node = Node, EdgeType extends Edge = Edge>(onInit: OnInit<NodeType, EdgeType> | undefined): void;
|
|
//# sourceMappingURL=useOnInitHandler.d.ts.map
|