1
0
Fork 0
mirror of https://github.com/archtechx/alpine-typescript.git synced 2025-12-12 06:44:03 +00:00

Fix $data type

This commit is contained in:
Samuel Štancl 2021-06-02 15:56:18 +02:00 committed by GitHub
parent a9ebdfc35d
commit dc31ffa15e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 };