viddo/atom-textual-velocity

View on GitHub
flow-types/INoteField.js

Summary

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

import type { Note, NotePropName } from "./Note";

export interface INoteField {
  notePropName: NotePropName;
  +value?: (note: Note, filename: string) => any;
}