From dc31ffa15ecc4ca7ebf78102a27e4a7c1a1bd463 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuel=20=C5=A0tancl?= Date: Wed, 2 Jun 2021 15:56:18 +0200 Subject: [PATCH] Fix $data type --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index c47ccbf..7547f56 100644 --- a/src/index.ts +++ b/src/index.ts @@ -53,7 +53,7 @@ export interface Alpine { export declare interface ComponentController { $el: AlpineElement; - $data: ProxyConstructor; + $data: any; $nextTickStack: CallableFunction[]; $showDirectiveStack: any[]; $watchers: { [name: string]: CallableFunction };