From: Eduardo San Martin Morote Date: Wed, 4 May 2022 16:57:48 +0000 (+0200) Subject: chore: oops file X-Git-Tag: v4.1.0~106 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ff7fec93c0a1f481a3097eba7cd9477000dcca8e;p=thirdparty%2Fvuejs%2Frouter.git chore: oops file --- diff --git a/src/typedRouter.ts b/src/typedRouter.ts new file mode 100644 index 00000000..7f721bea --- /dev/null +++ b/src/typedRouter.ts @@ -0,0 +1,7 @@ +import { Router } from './router' + +export interface Config { + // Router: unknown +} + +export type RouterTyped = Config extends Record<'Router', infer R> ? R : Router