We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d39f51d commit 3f6cf4dCopy full SHA for 3f6cf4d
packages/number-flow/src/group.ts
@@ -31,11 +31,11 @@ export default class NumberFlowGroup extends ServerSafeHTMLElement {
31
32
private _flows = new Set<NumberFlow>()
33
34
- _addDescendant = (flow: NumberFlow) => {
+ private _addDescendant = (flow: NumberFlow) => {
35
flow.batched = true
36
this._flows.add(flow)
37
}
38
- _removeDescendant = (flow: NumberFlow) => {
+ private _removeDescendant = (flow: NumberFlow) => {
39
flow.batched = false
40
this._flows.delete(flow)
41
0 commit comments