mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 00:42:36 +00:00
Refactor #3965 - For Directives .d.ts
This commit is contained in:
parent
2f33571ee3
commit
ab880af36c
5 changed files with 61 additions and 50 deletions
12
components/lib/styleclass/StyleClass.d.ts
vendored
12
components/lib/styleclass/StyleClass.d.ts
vendored
|
@ -51,26 +51,26 @@ export interface StyleClassOptions {
|
|||
toggleClass?: string | undefined;
|
||||
/**
|
||||
* Uses to pass attributes to DOM elements inside the component.
|
||||
* @type {StyleClassPassThroughDirectiveOptions}
|
||||
* @type {StyleClassDirectivePassThroughOptions}
|
||||
*/
|
||||
pt?: StyleClassPassThroughDirectiveOptions;
|
||||
pt?: StyleClassDirectivePassThroughOptions;
|
||||
}
|
||||
|
||||
/**
|
||||
* Custom passthrough(pt) directive options.
|
||||
*/
|
||||
export interface StyleClassPassThroughDirectiveOptions {
|
||||
export interface StyleClassDirectivePassThroughOptions {
|
||||
/**
|
||||
* Uses to pass attributes to the life cycle hooks.
|
||||
* @see {@link StyleClassPassThroughHooksOptions}
|
||||
* @see {@link StyleClassDirectivePassThroughHooksOptions}
|
||||
*/
|
||||
hooks?: StyleClassPassThroughHooksOptions;
|
||||
hooks?: StyleClassDirectivePassThroughHooksOptions;
|
||||
}
|
||||
|
||||
/**
|
||||
* Custom passthrough(pt) hooks options.
|
||||
*/
|
||||
export interface StyleClassPassThroughHooksOptions {
|
||||
export interface StyleClassDirectivePassThroughHooksOptions {
|
||||
/**
|
||||
* Called before bound element's attributes or event listeners are applied.
|
||||
*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue