12 lines
212 B
TypeScript
12 lines
212 B
TypeScript
|
import React from 'react';
|
||
|
|
||
|
interface routeType {
|
||
|
path: string;
|
||
|
component: React.ComponentType<any>;
|
||
|
auth?: boolean;
|
||
|
exact?: boolean;
|
||
|
routes?: Array<routeType> | undefined;
|
||
|
}
|
||
|
|
||
|
export default routeType;
|