/**
 * A test DocumentType for different functionalities.
 * @author Benedikt Arnarsson
 */
type TestDocument = {
  id: number,
  msg: string,
  options: {
    uppercase: boolean,
    exclamation: boolean,
  },
  rating?: number,
};

export default TestDocument;
