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:
parent
d7d4674b17
commit
0913d1eb11
1 changed files with 6 additions and 7 deletions
13
src/index.ts
13
src/index.ts
|
|
@ -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;
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue