mirror of
https://github.com/pawelmalak/flame.git
synced 2026-02-28 09:23:12 +08:00
6 lines
84 B
TypeScript
6 lines
84 B
TypeScript
export interface Route {
|
|
name: string;
|
|
dest: string;
|
|
authRequired: boolean;
|
|
}
|