UNPKG

@stimulus-library/controllers

Version:

A library of useful controllers for Stimulus

17 lines (16 loc) 511 B
import { BaseController } from "@stimulus-library/utilities"; export declare class SignalDomChildrenController extends BaseController { static values: { name: StringConstructor; scopeSelector: StringConstructor; }; nameValue: string; hasNameValue: boolean; hasScopeSelectorValue: boolean; scopeSelectorValue: string; get _children(): Element[]; get _name(): string; connect(): void; mutate(_entries: MutationRecord[]): void; emitChildCount(): void; }