mirror of
https://github.com/roleypoly/roleypoly-v1.git
synced 2025-04-25 20:19:12 +00:00
6 lines
115 B
TypeScript
6 lines
115 B
TypeScript
import Router from 'next/router'
|
|
|
|
export type PageProps = {
|
|
router: Router,
|
|
dispatch: (...stuff: any) => any
|
|
}
|