# tableberg/1.1.5/typings/wordpress__data.d.ts

Tableberg – Simple Gutenberg Table Block, version 1.1.5. 23 lines.

- Page: https://pluginprobe.com/plugins/tableberg/1.1.5/code/typings/wordpress__data.d.ts
- Raw: https://pluginprobe.com/plugins/tableberg/1.1.5/raw/typings/wordpress__data.d.ts
- Modified: 2026-09-16T03:30:32+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/tableberg/1.1.5/code/typings/wordpress__data.d.ts#L10-L20`.

```typescript
interface blockEditorStoreSelectorCustomTypes {
    getBlockParents: (clientId: string, ascending?: boolean) => string[];
}

interface blockEditorStoreActionsCustomTypes {
    moveBlocksToPosition: (
        clientIds: string | string[],
        fromRootClientId?: string,
        toRootClientId?: string,
        index?: number
    ) => void;
}

declare type BlockEditorStoreSelectors =
    typeof import("@wordpress/block-editor/store/selectors") &
        blockEditorStoreSelectorCustomTypes;
declare type BlockEditorStoreActions =
    typeof import("@wordpress/block-editor/store/actions") &
        blockEditorStoreActionsCustomTypes;

declare type EditorStoreSelectors =
    typeof import("@wordpress/editor/store/selectors");

```
