mirror of
https://github.com/roleypoly/roleypoly-v1.git
synced 2025-04-25 12:19:10 +00:00
7 lines
124 B
JavaScript
7 lines
124 B
JavaScript
// @flow
|
|
import type Router from 'next/router'
|
|
|
|
export type PageProps = {
|
|
router: Router,
|
|
dispatch: (...any) => mixed
|
|
}
|