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

9 lines
193 B
TypeScript

import { API } from "../api/API";
import { Settings } from "../settings/Settings";
export type DefaultPageProps = {
settings: Settings;
api: API;
matches?: { [key: string]: string };
};