Advertisement
Guest User

Untitled

a guest
Dec 9th, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. interface routing = {
  2.   title: String,
  3.   path: String,
  4.   icon: String,
  5.   sub: subRouting,
  6.   components:String,
  7.   childRoutes:null
  8. }
  9.  
  10. interface subRouting = routing
  11.  
  12. interface childRoutes = [
  13.     {
  14.     path: String,
  15.     components: String
  16.   }
  17. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement