@select-org/select-post-builder 1.0.4 → 1.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -184,17 +184,6 @@ declare type WithoutModalProps = BaseProps & {
184
184
  export { }
185
185
 
186
186
 
187
- declare module '@tiptap/core' {
188
- interface Commands<ReturnType> {
189
- poll: {
190
- insertPoll: (attrs: {
191
- choices: PollChoiceItem[];
192
- }) => ReturnType;
193
- };
194
- }
195
- }
196
-
197
-
198
187
  declare module '@tiptap/core' {
199
188
  interface Commands<ReturnType> {
200
189
  media: {
@@ -219,6 +208,17 @@ declare module '@tiptap/core' {
219
208
  }
220
209
 
221
210
 
211
+ declare module '@tiptap/core' {
212
+ interface Commands<ReturnType> {
213
+ poll: {
214
+ insertPoll: (attrs: {
215
+ choices: PollChoiceItem[];
216
+ }) => ReturnType;
217
+ };
218
+ }
219
+ }
220
+
221
+
222
222
  declare module '@tiptap/core' {
223
223
  interface Commands<ReturnType> {
224
224
  customLink: {