From 9028846fad07da9c12cb169de6a9b1bcfb6121ea Mon Sep 17 00:00:00 2001 From: Konnor Rogers Date: Mon, 1 May 2023 01:49:33 -0400 Subject: [PATCH] Update index.d.ts (#441) --- index.d.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/index.d.ts b/index.d.ts index 5c909e5..11f4054 100644 --- a/index.d.ts +++ b/index.d.ts @@ -3,6 +3,8 @@ import * as preact from 'preact'; export function route(url: string, replace?: boolean): boolean; export function route(options: { url: string; replace?: boolean }): boolean; +export function exec(url: string, route: string, opts: { default?: boolean }): boolean; + export function getCurrentUrl(): string; export interface Location {