Vadym Borodin
Vadym Borodin
I'm also running into the same issue. I have a more straightforward example: ```php /* Node.php */ use Siler\GraphQL\Annotation\Field; use Siler\GraphQL\Annotation\ObjectType; /** @ObjectType */ class Node { /** @Field */...
Hi, and thank you for an excellent library and a quick reply! >Can you explain why you want access to the options property? I'm implementing an `imageUploadFunction`, and to mimic...
I'm also unsure whether cherry-picking required fields will be challenging to maintain. Perhaps this would be enough: ```ts options: EasyMDE.Options; ``` In this case, however, all the work of checking...
@ggJSC [`imports-loader`](https://github.com/webpack-contrib/imports-loader) worked for me: ```js config.module = { rules: [{ test: /\.js$/, loader: 'imports-loader?window.Quill=quill', include: path.resolve('./node_modules/quill-image-resize-module') }] }; ``` Then you don't have to register the module, just import...