type 'CategoriesArguments' is not a subtype of type 'CategoriesArguments' where code example
Example: type '_Type' is not a subtype of type 'Widget'
wrong:
return Foo;
right:
return Foo();
wrong:
return Foo;
right:
return Foo();