types.ts 186 B

123456789101112131415
  1. interface Route {
  2. name: string;
  3. url: string;
  4. time: string;
  5. source_host: string;
  6. }
  7. interface Msg {
  8. ok: boolean;
  9. error?: string;
  10. }
  11. interface MsgRoute extends Msg {
  12. route: Route;
  13. }