This commit is contained in:
Nathan Bierema 2020-05-04 18:22:56 -04:00
parent 460b20369a
commit e18e00972b

View File

@ -40,7 +40,7 @@ interface JSONNestedNodeCircularPropsPassedThroughJSONTree {
postprocessValue: (value: any) => any; postprocessValue: (value: any) => any;
isCustomNode: (value: any) => boolean; isCustomNode: (value: any) => boolean;
collectionLimit: number; collectionLimit: number;
sortObjectKeys?: (a: any, b: any) => number | boolean; sortObjectKeys?: ((a: any, b: any) => number) | boolean;
} }
export type CircularPropsPassedThroughJSONTree = SharedCircularPropsPassedThroughJSONTree & export type CircularPropsPassedThroughJSONTree = SharedCircularPropsPassedThroughJSONTree &
JSONValueNodeCircularPropsPassedThroughJSONTree & JSONValueNodeCircularPropsPassedThroughJSONTree &