1
0
Fork 0
VaultUI/src/types/DefaultPageProps.ts

9 lines
193 B
TypeScript
Raw Normal View History

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