config-router/typings/routeType.ts

11 lines
199 B
TypeScript
Raw Normal View History

2021-10-22 15:35:01 +08:00
import * as React from 'react';
2021-10-22 15:00:20 +08:00
interface routeType {
path: string;
component: React.ComponentType<any>;
exact?: boolean;
routes?: Array<routeType> | undefined;
}
export default routeType;