config-router/typings/routeType.ts

12 lines
212 B
TypeScript
Raw Normal View History

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