Kohei Yamada
Kohei Yamada
`import { Document } from '@contentful/rich-text-types';` is not need when we don't use richText. But it contained always. This may cause failing linter. So I modified to contain `import {...
When I open the demo page(https://webcomponents.dev/edit/EJ5VTuaaO0Iwq3APUFMe), the code throws error below. > _$currentContext is not a function [src/index.stories.jsx (12:22)]() >> TypeError: _$currentContext is not a function at https://webcomponents.dev/42890220-93bd-11ec-b7a1-81c82af0ebbf/web_modules/EJ5VTuaaO0Iwq3APUFMe/dist/index.stories.js:17:19 at story1...
This solve #108 (generate correct type definition of move function)
### Description 2nd and 3rd args of move function(defined at mock-interactions.js) are expected non-nullable objects have x and y properties. ```js export function move(node, fromXY, toXY, steps) { steps =...