UNPKG

slate-devtools

Version:

`slate-devtools` as name suggests it is devtool for [slatejs](https://github.com/ianstormtaylor/slate) which will assist you in debugging the code

13 lines 435 B
import { Node, Path } from "slate"; /** * For keys I am using the index of array. But I dont think it will lead to any problems in * this case */ export declare type PropertiesProps = { properties: Partial<Node>; path: Path; left?: boolean; right?: boolean; }; export declare const Properties: ({ properties, path, left, right, }: PropertiesProps) => JSX.Element; //# sourceMappingURL=properties.d.ts.map