Update d.ts files

This commit is contained in:
mertsincan 2023-07-06 12:09:01 +01:00
parent a4529e5be0
commit e9a561a7d1
98 changed files with 638 additions and 322 deletions

View file

@ -7,6 +7,7 @@
* @module skeleton
*
*/
import { ComponentHooks } from '../basecomponent/BaseComponent';
import { ClassComponent, GlobalComponentConstructor } from '../ts-helpers';
export declare type SkeletonPassThroughOptionType = SkeletonPassThroughAttributes | ((options: SkeletonPassThroughMethodOptions) => SkeletonPassThroughAttributes) | null | undefined;
@ -27,6 +28,11 @@ export interface SkeletonPassThroughOptions {
* Uses to pass attributes to the root's DOM element.
*/
root?: SkeletonPassThroughOptionType;
/**
* Uses to manage all lifecycle hooks
* @see {@link BaseComponent.ComponentHooks}
*/
hooks?: ComponentHooks;
}
/**