v1/ui/types.js
2019-03-20 09:25:28 -05:00

10 lines
248 B
JavaScript

// @flow
import type { ServerSlug as BackendServerSlug } from '../services/presentation'
import type Router from 'next/router'
export type PageProps = {
router: Router,
dispatch: (...any) => mixed
}
export type ServerSlug = BackendServerSlug