ResultItem.ts 301 B

12345678910
  1. import { types } from 'mobx-state-tree';
  2. export const ResultItem = types.model('ResultItem', {
  3. id: types.identifier(types.number),
  4. folderId: types.optional(types.number, 0),
  5. title: types.string,
  6. url: types.string,
  7. icon: types.string,
  8. folderTitle: types.optional(types.string, ''),
  9. });