mirror of
https://github.com/roleypoly/roleypoly-v1.git
synced 2025-04-26 04:29:11 +00:00
9 lines
217 B
JavaScript
9 lines
217 B
JavaScript
// @flow
|
|
import type { ServerSlug as BackendServerSlug } from '../services/presentation'
|
|
import type Router from 'next/router'
|
|
|
|
export type PageProps = {
|
|
router: Router
|
|
}
|
|
|
|
export type ServerSlug = BackendServerSlug
|