Refactor #3965 - For Directives .d.ts

This commit is contained in:
Tuğçe Küçükoğlu 2023-06-23 17:51:42 +03:00
parent 2f33571ee3
commit ab880af36c
5 changed files with 61 additions and 50 deletions

View file

@ -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.
*/