PluginProbe
Tableberg – Simple Gutenberg Table Block / 1.1.5
Tableberg – Simple Gutenberg Table Block v1.1.5
1.1.5 1.1.4 1.1.3 1.1.2 1.1.1 1.1.0 1.0.5 1.0.4 1.0.3 1.0.2 1.0.1 trunk 0.0.2 0.2.1 0.3.2 0.3.3 0.4.1 0.5.0 0.5.1 0.5.2 0.5.3 0.5.4 0.5.5 0.5.6 0.5.7 All 42 releases
tableberg / typings / wordpress__data.d.ts

wordpress__data.d.ts in Tableberg – Simple Gutenberg Table Block 1.1.5, at typings/wordpress__data.d.ts

23 lines 733 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 interface blockEditorStoreSelectorCustomTypes {
2 getBlockParents: (clientId: string, ascending?: boolean) => string[];
3 }
4
5 interface blockEditorStoreActionsCustomTypes {
6 moveBlocksToPosition: (
7 clientIds: string | string[],
8 fromRootClientId?: string,
9 toRootClientId?: string,
10 index?: number
11 ) => void;
12 }
13
14 declare type BlockEditorStoreSelectors =
15 typeof import("@wordpress/block-editor/store/selectors") &
16 blockEditorStoreSelectorCustomTypes;
17 declare type BlockEditorStoreActions =
18 typeof import("@wordpress/block-editor/store/actions") &
19 blockEditorStoreActionsCustomTypes;
20
21 declare type EditorStoreSelectors =
22 typeof import("@wordpress/editor/store/selectors");
23