2022-01-07 15:27:10 +00:00
|
|
|
import { API } from "../api/API";
|
2022-01-07 14:26:21 +00:00
|
|
|
import { Settings } from "../settings/Settings";
|
2022-01-06 18:53:38 +00:00
|
|
|
|
|
|
|
export type DefaultPageProps = {
|
2022-01-07 14:26:21 +00:00
|
|
|
settings: Settings;
|
2022-01-07 15:27:10 +00:00
|
|
|
api: API;
|
2022-01-06 23:02:34 +00:00
|
|
|
matches?: { [key: string]: string };
|
|
|
|
};
|