borela / naomi

Sublime Text enhanced syntax highlighting for JavaScript ES6/ES7/ES2015/ES2016/ES2017+, Babel, FlowType, React JSX, Styled Components, HTML5, SCSS3, PHP 7, phpDoc, PHPUnit, MQL4. Basic: Git config files.
Other
558 stars 18 forks source link

[JS] Export discolored after flow function type #206

Open Whoaa512 opened 5 years ago

Whoaa512 commented 5 years ago

Image:

screenshot 2019-02-04 10 38 09

Code:

// @flow
type PromiseFuncType = (*) => Promise<*>

export type ApolloClientType = {
    mutate: PromiseFuncType,
    query: PromiseFuncType,
}