// Import types import TestDocument from '../types/TestDocument'; /** * The secondary TEST_DOCUMENT. * @author Gabe Abrams */ const SECOND_TEST_DOCUMENT: TestDocument = { id: 444, msg: 'Goodbye World', options: { uppercase: false, exclamation: true, }, rating: 95, }; export default SECOND_TEST_DOCUMENT;