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

Fix typos

This commit is contained in:
Rafik El Hadi Houari 2021-05-17 16:35:03 +01:00 committed by GitHub
parent d7d4674b17
commit 0913d1eb11
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -29,19 +29,18 @@ declare type Alpine = {
pauseMutationObserver: boolean;
magicProperties: { [name: string]: CallableFunction };
ignoreFocusedForValueBinding: boolean;
pauseMutationObserver: boolean;
onComponentInitializeds: Array<any>;
onBeforeComponentInitializeds: Array<any>;
onComponentInitializeds: (callback: CallableFunction) => void;
onBeforeComponentInitializeds: (callback: CallableFunction) => void;
onComponentInitializeds: Array<CallableFunction>;
onBeforeComponentInitializeds: Array<CallableFunction>;
onComponentInitialized: (callback: CallableFunction) => void;
onBeforeComponentInitialized: (callback: CallableFunction) => void;
listenForNewUninitializedComponentsAtRunTime: () => undefined;
discoverUninitializedComponents: (
callback: (rootEl: HTMLElement) => void,
el?: HTMLElement = null
el?: HTMLElement,
) => void;
discoverComponents: (callback: (rootEl: HTMLElement) => void) => void;
start: () => void;
addMagicProperty(name: string, callback: ($el: HTMLElement) => void);
addMagicProperty: (name: string, callback: ($el: HTMLElement) => void) => void;
clone: (component: AlpineComponent, newEl: HTMLElement) => void;
};