- el(selectors): {
cssClass: ((value: boolean, cssClass: string) => void);
cssDisplay: ((value: string) => void);
cssToggle: ((cssClass: string) => void);
el: (() => HTMLElement);
els: (() => HTMLElement[]);
html: ((value: any) => string);
text: ((value: any) => string);
} Returns {
cssClass: ((value: boolean, cssClass: string) => void);
cssDisplay: ((value: string) => void);
cssToggle: ((cssClass: string) => void);
el: (() => HTMLElement);
els: (() => HTMLElement[]);
html: ((value: any) => string);
text: ((value: any) => string);
}
cssClass: ((value: boolean, cssClass: string) => void)
- (value, cssClass): void
Parameters
- value: boolean
- cssClass: string
Returns void
cssDisplay: ((value: string) => void)
- (value): void
Returns void
cssToggle: ((cssClass: string) => void)
- (cssClass): void
Returns void
el: (() => HTMLElement)
- (): HTMLElement
Returns HTMLElement
els: (() => HTMLElement[])
- (): HTMLElement[]
Returns HTMLElement[]
html: ((value: any) => string)
- (value): string
Returns string
text: ((value: any) => string)
- (value): string
Returns string