Bogdan Savluk

Results 77 comments of Bogdan Savluk

related to this, when having code like: `import type { MyType } from 'module';` it is also converted to: `import { MyType } from 'module';` tried to make a fix...

> I see the PR has been merged but I am still having this issue. Which version is this available in? I am using `"flowgen": "^1.12.1",` merged PR fixes only...

ideally this should be converted to: ``` function didYouMean(suggestions: ReadonlyArray): string; function didYouMean( subMessage: string, suggestions: ReadonlyArray, ): string; // eslint-disable-next-line no-redeclare function didYouMean(firstArg, secondArg?):string { } export default didYouMean;...

Hi @TomPridham it looks issue is already fixed in master, but the version in npm is outdated as a workaround, you can try using my fork `@zxbodya/babel-plugin-flow-to-typescript` (latest version there...

I agree this makes more sense, also did it(https://github.com/zxbodya/babel-plugin-flow-to-typescript/commit/84443ba137199b5f28d55c8700d953ad1f10a380) can you double-check test for the program visitor - https://github.com/Kiikurage/babel-plugin-flow-to-typescript/blob/master/test/visitors/program.test.ts#L60 I think this test, should have failed… but it looks ci...

Yes. http://imagine.readthedocs.org/en/latest/usage/introduction.html#image-watermarking You can do it in `versions` functions.

I mean versions field in behavior configuration, it would be something like: ``` php public function behaviors() { return [ 'galleryBehavior' => [ 'class' => GalleryBehavior::className(), 'type' => 'product', 'extension'...

can you show your error? and maybe code you have?

It is just an example... I have not tested it. Maybe error is here `$watermark = $imagine->open('/my/watermark.png');` Try replacing it with: `$watermark = Image::getImagine()->open('/my/watermark.png');`

Hi, For now it is not possible, you will need to modify extension... All uploaded images are loaded using Imagine::open(), that after modifications for specific image version, are saved using...