mirror of
https://github.com/mastermindzh/rickvanlieshout.com
synced 2025-01-01 01:28:02 +01:00
9 lines
139 B
TypeScript
9 lines
139 B
TypeScript
|
import Pagination from "./pagination";
|
||
|
|
||
|
interface PageContext {
|
||
|
group?: string;
|
||
|
pagination: Pagination;
|
||
|
}
|
||
|
|
||
|
export default PageContext;
|