viddo/atom-textual-velocity

View on GitHub
flow-types/PreviewEditor.js

Summary

Maintainability
A
0 mins
Test Coverage
/* @flow */

declare class _PreviewEditor extends atom$TextEditor {
  openPreview: (
    notePath: string,
    content: ?string,
    searchRegexps: RegExp[]
  ) => Promise<PreviewEditor>;
}

export type PreviewEditor = _PreviewEditor;