From d195ce25674ecba872464cdb709d4509f0613964 Mon Sep 17 00:00:00 2001 From: slacktracer Date: Thu, 30 May 2019 11:03:01 -0300 Subject: [PATCH] Proper typing for LinkProps. --- index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/index.d.ts b/index.d.ts index e0de69f..cd84930 100644 --- a/index.d.ts +++ b/index.d.ts @@ -2,6 +2,7 @@ import { Children, VNode } from "hyperapp"; /** Link */ interface LinkProps { + class?: string; to: string; location?: Location; }