Skip to content
This repository has been archived by the owner on Aug 9, 2019. It is now read-only.

Commit

Permalink
add missing export
Browse files Browse the repository at this point in the history
  • Loading branch information
albar committed Jun 16, 2018
1 parent 73a0c5e commit dd9b375
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/RouteGuard.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import Vue from "vue";
import { Route, RawLocation } from "vue-router/types/router";

type PossibleRouteGuardResult = RawLocation | boolean | void;
type AsyncPossibleRouteGuardResult = Promise<PossibleRouteGuardResult>;
export type PossibleRouteGuardResult = RawLocation | boolean | void;
export type AsyncPossibleRouteGuardResult = Promise<PossibleRouteGuardResult>;

export type RouteGuardResult = PossibleRouteGuardResult | AsyncPossibleRouteGuardResult;

Expand Down

0 comments on commit dd9b375

Please sign in to comment.