mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 00:42:36 +00:00
Update d.ts files
This commit is contained in:
parent
a4529e5be0
commit
e9a561a7d1
98 changed files with 638 additions and 322 deletions
14
components/lib/basecomponent/BaseComponent.d.ts
vendored
Normal file
14
components/lib/basecomponent/BaseComponent.d.ts
vendored
Normal file
|
@ -0,0 +1,14 @@
|
|||
export interface ComponentHooks {
|
||||
beforeCreate?(): void;
|
||||
created?(): void;
|
||||
beforeMount?(): void;
|
||||
mounted?(): void;
|
||||
beforeUpdate?(): void;
|
||||
updated?(): void;
|
||||
beforeUnmount?(): void;
|
||||
unmounted?(): void;
|
||||
}
|
||||
|
||||
export interface BaseComponentPassThroughOptions {
|
||||
hooks?: ComponentHooks;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue