jsGiven/jsGiven

View on GitHub
js-given/src/jgivenReport/AttachmentModel.js

Summary

Maintainability
A
0 mins
Test Coverage
// @flow

export type AttachmentModel = {
  +title: string,
  +value: string,
  +fileName: string,
  +mediaType: string,
  +binary: boolean,
};