UNPKG

metadata-based-explorer1

Version:
15 lines (11 loc) 377 B
// @flow import { VIEW_MODE_GRID, VIEW_MODE_LIST, VIEW_MODE_METADATA_BASED_LIST } from '../../constants'; type ViewMode = typeof VIEW_MODE_GRID | typeof VIEW_MODE_LIST | typeof VIEW_MODE_METADATA_BASED_LIST; type ErrorType = { code: string, details?: Object, displayMessage?: string, message?: string, }; export type { ErrorType }; export type { ViewMode };