viddo/atom-textual-velocity

View on GitHub
lib/note-fields/ContentNoteField.js

Summary

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

import type { INoteField } from "../../flow-types/INoteField";
import type { NotePropName } from "../../flow-types/Note";

export default class ContentNoteField implements INoteField {
  notePropName: NotePropName;
}

ContentNoteField.prototype.notePropName = "content";