Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ function useAsyncBatcher<TValue, TSelected>(
selector): ReactAsyncBatcher<TValue, TSelected>;
```

Defined in: [react-pacer/src/async-batcher/useAsyncBatcher.ts:168](https://github.com/TanStack/pacer/blob/main/packages/react-pacer/src/async-batcher/useAsyncBatcher.ts#L168)
Defined in: [react-pacer/src/async-batcher/useAsyncBatcher.ts:170](https://github.com/TanStack/pacer/blob/main/packages/react-pacer/src/async-batcher/useAsyncBatcher.ts#L170)

A React hook that creates an `AsyncBatcher` instance for managing asynchronous batches of items.

Expand Down
2 changes: 1 addition & 1 deletion docs/framework/react/reference/functions/useAsyncQueuer.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ function useAsyncQueuer<TValue, TSelected>(
selector): ReactAsyncQueuer<TValue, TSelected>;
```

Defined in: [react-pacer/src/async-queuer/useAsyncQueuer.ts:168](https://github.com/TanStack/pacer/blob/main/packages/react-pacer/src/async-queuer/useAsyncQueuer.ts#L168)
Defined in: [react-pacer/src/async-queuer/useAsyncQueuer.ts:170](https://github.com/TanStack/pacer/blob/main/packages/react-pacer/src/async-queuer/useAsyncQueuer.ts#L170)

A lower-level React hook that creates an `AsyncQueuer` instance for managing an async queue of items.

Expand Down
2 changes: 1 addition & 1 deletion docs/framework/react/reference/functions/useBatcher.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ function useBatcher<TValue, TSelected>(
selector): ReactBatcher<TValue, TSelected>;
```

Defined in: [react-pacer/src/batcher/useBatcher.ts:122](https://github.com/TanStack/pacer/blob/main/packages/react-pacer/src/batcher/useBatcher.ts#L122)
Defined in: [react-pacer/src/batcher/useBatcher.ts:124](https://github.com/TanStack/pacer/blob/main/packages/react-pacer/src/batcher/useBatcher.ts#L124)

A React hook that creates and manages a Batcher instance.

Expand Down
2 changes: 1 addition & 1 deletion docs/framework/react/reference/functions/useDebouncer.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ function useDebouncer<TFn, TSelected>(
selector): ReactDebouncer<TFn, TSelected>;
```

Defined in: [react-pacer/src/debouncer/useDebouncer.ts:103](https://github.com/TanStack/pacer/blob/main/packages/react-pacer/src/debouncer/useDebouncer.ts#L103)
Defined in: [react-pacer/src/debouncer/useDebouncer.ts:105](https://github.com/TanStack/pacer/blob/main/packages/react-pacer/src/debouncer/useDebouncer.ts#L105)

A React hook that creates and manages a Debouncer instance.

Expand Down
2 changes: 1 addition & 1 deletion docs/framework/react/reference/functions/useQueuer.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ function useQueuer<TValue, TSelected>(
selector): ReactQueuer<TValue, TSelected>;
```

Defined in: [react-pacer/src/queuer/useQueuer.ts:133](https://github.com/TanStack/pacer/blob/main/packages/react-pacer/src/queuer/useQueuer.ts#L133)
Defined in: [react-pacer/src/queuer/useQueuer.ts:135](https://github.com/TanStack/pacer/blob/main/packages/react-pacer/src/queuer/useQueuer.ts#L135)

A React hook that creates and manages a Queuer instance.

Expand Down
2 changes: 1 addition & 1 deletion docs/framework/react/reference/functions/useRateLimiter.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ function useRateLimiter<TFn, TSelected>(
selector): ReactRateLimiter<TFn, TSelected>;
```

Defined in: [react-pacer/src/rate-limiter/useRateLimiter.ts:142](https://github.com/TanStack/pacer/blob/main/packages/react-pacer/src/rate-limiter/useRateLimiter.ts#L142)
Defined in: [react-pacer/src/rate-limiter/useRateLimiter.ts:144](https://github.com/TanStack/pacer/blob/main/packages/react-pacer/src/rate-limiter/useRateLimiter.ts#L144)

A low-level React hook that creates a `RateLimiter` instance to enforce rate limits on function execution.

Expand Down
2 changes: 1 addition & 1 deletion docs/framework/react/reference/functions/useThrottler.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ function useThrottler<TFn, TSelected>(
selector): ReactThrottler<TFn, TSelected>;
```

Defined in: [react-pacer/src/throttler/useThrottler.ts:108](https://github.com/TanStack/pacer/blob/main/packages/react-pacer/src/throttler/useThrottler.ts#L108)
Defined in: [react-pacer/src/throttler/useThrottler.ts:110](https://github.com/TanStack/pacer/blob/main/packages/react-pacer/src/throttler/useThrottler.ts#L110)

A low-level React hook that creates a `Throttler` instance that limits how often the provided function can execute.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Defined in: [react-pacer/src/async-batcher/useAsyncBatcher.ts:11](https://github
readonly state: Readonly<TSelected>;
```

Defined in: [react-pacer/src/async-batcher/useAsyncBatcher.ts:18](https://github.com/TanStack/pacer/blob/main/packages/react-pacer/src/async-batcher/useAsyncBatcher.ts#L18)
Defined in: [react-pacer/src/async-batcher/useAsyncBatcher.ts:20](https://github.com/TanStack/pacer/blob/main/packages/react-pacer/src/async-batcher/useAsyncBatcher.ts#L20)

Reactive state that will be updated and re-rendered when the batcher state changes

Expand All @@ -44,7 +44,7 @@ Use this instead of `batcher.store.state`
readonly store: Store<Readonly<AsyncBatcherState<TValue>>>;
```

Defined in: [react-pacer/src/async-batcher/useAsyncBatcher.ts:24](https://github.com/TanStack/pacer/blob/main/packages/react-pacer/src/async-batcher/useAsyncBatcher.ts#L24)
Defined in: [react-pacer/src/async-batcher/useAsyncBatcher.ts:26](https://github.com/TanStack/pacer/blob/main/packages/react-pacer/src/async-batcher/useAsyncBatcher.ts#L26)

#### Deprecated

Expand Down
4 changes: 2 additions & 2 deletions docs/framework/react/reference/interfaces/ReactAsyncQueuer.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Defined in: [react-pacer/src/async-queuer/useAsyncQueuer.ts:11](https://github.c
readonly state: Readonly<TSelected>;
```

Defined in: [react-pacer/src/async-queuer/useAsyncQueuer.ts:18](https://github.com/TanStack/pacer/blob/main/packages/react-pacer/src/async-queuer/useAsyncQueuer.ts#L18)
Defined in: [react-pacer/src/async-queuer/useAsyncQueuer.ts:20](https://github.com/TanStack/pacer/blob/main/packages/react-pacer/src/async-queuer/useAsyncQueuer.ts#L20)

Reactive state that will be updated and re-rendered when the queuer state changes

Expand All @@ -44,7 +44,7 @@ Use this instead of `queuer.store.state`
readonly store: Store<Readonly<AsyncQueuerState<TValue>>>;
```

Defined in: [react-pacer/src/async-queuer/useAsyncQueuer.ts:24](https://github.com/TanStack/pacer/blob/main/packages/react-pacer/src/async-queuer/useAsyncQueuer.ts#L24)
Defined in: [react-pacer/src/async-queuer/useAsyncQueuer.ts:26](https://github.com/TanStack/pacer/blob/main/packages/react-pacer/src/async-queuer/useAsyncQueuer.ts#L26)

#### Deprecated

Expand Down
4 changes: 2 additions & 2 deletions docs/framework/react/reference/interfaces/ReactBatcher.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Defined in: [react-pacer/src/batcher/useBatcher.ts:8](https://github.com/TanStac
readonly state: Readonly<TSelected>;
```

Defined in: [react-pacer/src/batcher/useBatcher.ts:15](https://github.com/TanStack/pacer/blob/main/packages/react-pacer/src/batcher/useBatcher.ts#L15)
Defined in: [react-pacer/src/batcher/useBatcher.ts:17](https://github.com/TanStack/pacer/blob/main/packages/react-pacer/src/batcher/useBatcher.ts#L17)

Reactive state that will be updated and re-rendered when the batcher state changes

Expand All @@ -44,7 +44,7 @@ Use this instead of `batcher.store.state`
readonly store: Store<Readonly<BatcherState<TValue>>>;
```

Defined in: [react-pacer/src/batcher/useBatcher.ts:21](https://github.com/TanStack/pacer/blob/main/packages/react-pacer/src/batcher/useBatcher.ts#L21)
Defined in: [react-pacer/src/batcher/useBatcher.ts:23](https://github.com/TanStack/pacer/blob/main/packages/react-pacer/src/batcher/useBatcher.ts#L23)

#### Deprecated

Expand Down
4 changes: 2 additions & 2 deletions docs/framework/react/reference/interfaces/ReactDebouncer.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Defined in: [react-pacer/src/debouncer/useDebouncer.ts:12](https://github.com/Ta
readonly state: Readonly<TSelected>;
```

Defined in: [react-pacer/src/debouncer/useDebouncer.ts:19](https://github.com/TanStack/pacer/blob/main/packages/react-pacer/src/debouncer/useDebouncer.ts#L19)
Defined in: [react-pacer/src/debouncer/useDebouncer.ts:21](https://github.com/TanStack/pacer/blob/main/packages/react-pacer/src/debouncer/useDebouncer.ts#L21)

Reactive state that will be updated and re-rendered when the debouncer state changes

Expand All @@ -44,7 +44,7 @@ Use this instead of `debouncer.store.state`
readonly store: Store<Readonly<DebouncerState<TFn>>>;
```

Defined in: [react-pacer/src/debouncer/useDebouncer.ts:25](https://github.com/TanStack/pacer/blob/main/packages/react-pacer/src/debouncer/useDebouncer.ts#L25)
Defined in: [react-pacer/src/debouncer/useDebouncer.ts:27](https://github.com/TanStack/pacer/blob/main/packages/react-pacer/src/debouncer/useDebouncer.ts#L27)

#### Deprecated

Expand Down
4 changes: 2 additions & 2 deletions docs/framework/react/reference/interfaces/ReactQueuer.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Defined in: [react-pacer/src/queuer/useQueuer.ts:8](https://github.com/TanStack/
readonly state: Readonly<TSelected>;
```

Defined in: [react-pacer/src/queuer/useQueuer.ts:15](https://github.com/TanStack/pacer/blob/main/packages/react-pacer/src/queuer/useQueuer.ts#L15)
Defined in: [react-pacer/src/queuer/useQueuer.ts:17](https://github.com/TanStack/pacer/blob/main/packages/react-pacer/src/queuer/useQueuer.ts#L17)

Reactive state that will be updated and re-rendered when the queuer state changes

Expand All @@ -44,7 +44,7 @@ Use this instead of `queuer.store.state`
readonly store: Store<Readonly<QueuerState<TValue>>>;
```

Defined in: [react-pacer/src/queuer/useQueuer.ts:21](https://github.com/TanStack/pacer/blob/main/packages/react-pacer/src/queuer/useQueuer.ts#L21)
Defined in: [react-pacer/src/queuer/useQueuer.ts:23](https://github.com/TanStack/pacer/blob/main/packages/react-pacer/src/queuer/useQueuer.ts#L23)

#### Deprecated

Expand Down
4 changes: 2 additions & 2 deletions docs/framework/react/reference/interfaces/ReactRateLimiter.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Defined in: [react-pacer/src/rate-limiter/useRateLimiter.ts:12](https://github.c
readonly state: Readonly<TSelected>;
```

Defined in: [react-pacer/src/rate-limiter/useRateLimiter.ts:19](https://github.com/TanStack/pacer/blob/main/packages/react-pacer/src/rate-limiter/useRateLimiter.ts#L19)
Defined in: [react-pacer/src/rate-limiter/useRateLimiter.ts:21](https://github.com/TanStack/pacer/blob/main/packages/react-pacer/src/rate-limiter/useRateLimiter.ts#L21)

Reactive state that will be updated and re-rendered when the rate limiter state changes

Expand All @@ -44,7 +44,7 @@ Use this instead of `rateLimiter.store.state`
readonly store: Store<Readonly<RateLimiterState>>;
```

Defined in: [react-pacer/src/rate-limiter/useRateLimiter.ts:25](https://github.com/TanStack/pacer/blob/main/packages/react-pacer/src/rate-limiter/useRateLimiter.ts#L25)
Defined in: [react-pacer/src/rate-limiter/useRateLimiter.ts:27](https://github.com/TanStack/pacer/blob/main/packages/react-pacer/src/rate-limiter/useRateLimiter.ts#L27)

#### Deprecated

Expand Down
4 changes: 2 additions & 2 deletions docs/framework/react/reference/interfaces/ReactThrottler.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Defined in: [react-pacer/src/throttler/useThrottler.ts:12](https://github.com/Ta
readonly state: Readonly<TSelected>;
```

Defined in: [react-pacer/src/throttler/useThrottler.ts:19](https://github.com/TanStack/pacer/blob/main/packages/react-pacer/src/throttler/useThrottler.ts#L19)
Defined in: [react-pacer/src/throttler/useThrottler.ts:21](https://github.com/TanStack/pacer/blob/main/packages/react-pacer/src/throttler/useThrottler.ts#L21)

Reactive state that will be updated and re-rendered when the throttler state changes

Expand All @@ -44,7 +44,7 @@ Use this instead of `throttler.store.state`
readonly store: Store<Readonly<ThrottlerState<TFn>>>;
```

Defined in: [react-pacer/src/throttler/useThrottler.ts:25](https://github.com/TanStack/pacer/blob/main/packages/react-pacer/src/throttler/useThrottler.ts#L25)
Defined in: [react-pacer/src/throttler/useThrottler.ts:27](https://github.com/TanStack/pacer/blob/main/packages/react-pacer/src/throttler/useThrottler.ts#L27)

#### Deprecated

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ function createAsyncBatcher<TValue, TSelected>(
selector): SolidAsyncBatcher<TValue, TSelected>;
```

Defined in: [solid-pacer/src/async-batcher/createAsyncBatcher.ts:129](https://github.com/TanStack/pacer/blob/main/packages/solid-pacer/src/async-batcher/createAsyncBatcher.ts#L129)
Defined in: [solid-pacer/src/async-batcher/createAsyncBatcher.ts:131](https://github.com/TanStack/pacer/blob/main/packages/solid-pacer/src/async-batcher/createAsyncBatcher.ts#L131)

Creates a Solid-compatible AsyncBatcher instance for managing asynchronous batches of items, exposing Solid signals for all stateful properties.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ function createAsyncQueuer<TValue, TSelected>(
selector): SolidAsyncQueuer<TValue, TSelected>;
```

Defined in: [solid-pacer/src/async-queuer/createAsyncQueuer.ts:121](https://github.com/TanStack/pacer/blob/main/packages/solid-pacer/src/async-queuer/createAsyncQueuer.ts#L121)
Defined in: [solid-pacer/src/async-queuer/createAsyncQueuer.ts:123](https://github.com/TanStack/pacer/blob/main/packages/solid-pacer/src/async-queuer/createAsyncQueuer.ts#L123)

Creates a Solid-compatible AsyncQueuer instance for managing an asynchronous queue of items, exposing Solid signals for all stateful properties.

Expand Down
2 changes: 1 addition & 1 deletion docs/framework/solid/reference/functions/createBatcher.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ function createBatcher<TValue, TSelected>(
selector): SolidBatcher<TValue, TSelected>;
```

Defined in: [solid-pacer/src/batcher/createBatcher.ts:101](https://github.com/TanStack/pacer/blob/main/packages/solid-pacer/src/batcher/createBatcher.ts#L101)
Defined in: [solid-pacer/src/batcher/createBatcher.ts:103](https://github.com/TanStack/pacer/blob/main/packages/solid-pacer/src/batcher/createBatcher.ts#L103)

Creates a Solid-compatible Batcher instance for managing batches of items, exposing Solid signals for all stateful properties.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ function createDebouncer<TFn, TSelected>(
selector): SolidDebouncer<TFn, TSelected>;
```

Defined in: [solid-pacer/src/debouncer/createDebouncer.ts:104](https://github.com/TanStack/pacer/blob/main/packages/solid-pacer/src/debouncer/createDebouncer.ts#L104)
Defined in: [solid-pacer/src/debouncer/createDebouncer.ts:106](https://github.com/TanStack/pacer/blob/main/packages/solid-pacer/src/debouncer/createDebouncer.ts#L106)

A Solid hook that creates and manages a Debouncer instance.

Expand Down
2 changes: 1 addition & 1 deletion docs/framework/solid/reference/functions/createQueuer.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ function createQueuer<TValue, TSelected>(
selector): SolidQueuer<TValue, TSelected>;
```

Defined in: [solid-pacer/src/queuer/createQueuer.ts:102](https://github.com/TanStack/pacer/blob/main/packages/solid-pacer/src/queuer/createQueuer.ts#L102)
Defined in: [solid-pacer/src/queuer/createQueuer.ts:104](https://github.com/TanStack/pacer/blob/main/packages/solid-pacer/src/queuer/createQueuer.ts#L104)

Creates a Solid-compatible Queuer instance for managing a synchronous queue of items, exposing Solid signals for all stateful properties.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ function createRateLimiter<TFn, TSelected>(
selector): SolidRateLimiter<TFn, TSelected>;
```

Defined in: [solid-pacer/src/rate-limiter/createRateLimiter.ts:103](https://github.com/TanStack/pacer/blob/main/packages/solid-pacer/src/rate-limiter/createRateLimiter.ts#L103)
Defined in: [solid-pacer/src/rate-limiter/createRateLimiter.ts:105](https://github.com/TanStack/pacer/blob/main/packages/solid-pacer/src/rate-limiter/createRateLimiter.ts#L105)

A low-level Solid hook that creates a `RateLimiter` instance to enforce rate limits on function execution.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ function createThrottler<TFn, TSelected>(
selector): SolidThrottler<TFn, TSelected>;
```

Defined in: [solid-pacer/src/throttler/createThrottler.ts:100](https://github.com/TanStack/pacer/blob/main/packages/solid-pacer/src/throttler/createThrottler.ts#L100)
Defined in: [solid-pacer/src/throttler/createThrottler.ts:102](https://github.com/TanStack/pacer/blob/main/packages/solid-pacer/src/throttler/createThrottler.ts#L102)

A low-level Solid hook that creates a `Throttler` instance that limits how often the provided function can execute.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Defined in: [solid-pacer/src/async-batcher/createAsyncBatcher.ts:11](https://git
readonly state: Accessor<Readonly<TSelected>>;
```

Defined in: [solid-pacer/src/async-batcher/createAsyncBatcher.ts:18](https://github.com/TanStack/pacer/blob/main/packages/solid-pacer/src/async-batcher/createAsyncBatcher.ts#L18)
Defined in: [solid-pacer/src/async-batcher/createAsyncBatcher.ts:20](https://github.com/TanStack/pacer/blob/main/packages/solid-pacer/src/async-batcher/createAsyncBatcher.ts#L20)

Reactive state that will be updated when the batcher state changes

Expand All @@ -44,7 +44,7 @@ Use this instead of `batcher.store.state`
readonly store: Store<Readonly<AsyncBatcherState<TValue>>>;
```

Defined in: [solid-pacer/src/async-batcher/createAsyncBatcher.ts:24](https://github.com/TanStack/pacer/blob/main/packages/solid-pacer/src/async-batcher/createAsyncBatcher.ts#L24)
Defined in: [solid-pacer/src/async-batcher/createAsyncBatcher.ts:26](https://github.com/TanStack/pacer/blob/main/packages/solid-pacer/src/async-batcher/createAsyncBatcher.ts#L26)

#### Deprecated

Expand Down
4 changes: 2 additions & 2 deletions docs/framework/solid/reference/interfaces/SolidAsyncQueuer.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Defined in: [solid-pacer/src/async-queuer/createAsyncQueuer.ts:11](https://githu
readonly state: Accessor<Readonly<TSelected>>;
```

Defined in: [solid-pacer/src/async-queuer/createAsyncQueuer.ts:18](https://github.com/TanStack/pacer/blob/main/packages/solid-pacer/src/async-queuer/createAsyncQueuer.ts#L18)
Defined in: [solid-pacer/src/async-queuer/createAsyncQueuer.ts:20](https://github.com/TanStack/pacer/blob/main/packages/solid-pacer/src/async-queuer/createAsyncQueuer.ts#L20)

Reactive state that will be updated when the queuer state changes

Expand All @@ -44,7 +44,7 @@ Use this instead of `queuer.store.state`
readonly store: Store<Readonly<AsyncQueuerState<TValue>>>;
```

Defined in: [solid-pacer/src/async-queuer/createAsyncQueuer.ts:24](https://github.com/TanStack/pacer/blob/main/packages/solid-pacer/src/async-queuer/createAsyncQueuer.ts#L24)
Defined in: [solid-pacer/src/async-queuer/createAsyncQueuer.ts:26](https://github.com/TanStack/pacer/blob/main/packages/solid-pacer/src/async-queuer/createAsyncQueuer.ts#L26)

#### Deprecated

Expand Down
4 changes: 2 additions & 2 deletions docs/framework/solid/reference/interfaces/SolidBatcher.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Defined in: [solid-pacer/src/batcher/createBatcher.ts:8](https://github.com/TanS
readonly state: Accessor<Readonly<TSelected>>;
```

Defined in: [solid-pacer/src/batcher/createBatcher.ts:15](https://github.com/TanStack/pacer/blob/main/packages/solid-pacer/src/batcher/createBatcher.ts#L15)
Defined in: [solid-pacer/src/batcher/createBatcher.ts:17](https://github.com/TanStack/pacer/blob/main/packages/solid-pacer/src/batcher/createBatcher.ts#L17)

Reactive state that will be updated when the batcher state changes

Expand All @@ -44,7 +44,7 @@ Use this instead of `batcher.store.state`
readonly store: Store<Readonly<BatcherState<TValue>>>;
```

Defined in: [solid-pacer/src/batcher/createBatcher.ts:21](https://github.com/TanStack/pacer/blob/main/packages/solid-pacer/src/batcher/createBatcher.ts#L21)
Defined in: [solid-pacer/src/batcher/createBatcher.ts:23](https://github.com/TanStack/pacer/blob/main/packages/solid-pacer/src/batcher/createBatcher.ts#L23)

#### Deprecated

Expand Down
4 changes: 2 additions & 2 deletions docs/framework/solid/reference/interfaces/SolidDebouncer.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Defined in: [solid-pacer/src/debouncer/createDebouncer.ts:13](https://github.com
readonly state: Accessor<Readonly<TSelected>>;
```

Defined in: [solid-pacer/src/debouncer/createDebouncer.ts:20](https://github.com/TanStack/pacer/blob/main/packages/solid-pacer/src/debouncer/createDebouncer.ts#L20)
Defined in: [solid-pacer/src/debouncer/createDebouncer.ts:22](https://github.com/TanStack/pacer/blob/main/packages/solid-pacer/src/debouncer/createDebouncer.ts#L22)

Reactive state that will be updated when the debouncer state changes

Expand All @@ -44,7 +44,7 @@ Use this instead of `debouncer.store.state`
readonly store: Store<Readonly<DebouncerState<TFn>>>;
```

Defined in: [solid-pacer/src/debouncer/createDebouncer.ts:26](https://github.com/TanStack/pacer/blob/main/packages/solid-pacer/src/debouncer/createDebouncer.ts#L26)
Defined in: [solid-pacer/src/debouncer/createDebouncer.ts:28](https://github.com/TanStack/pacer/blob/main/packages/solid-pacer/src/debouncer/createDebouncer.ts#L28)

#### Deprecated

Expand Down
4 changes: 2 additions & 2 deletions docs/framework/solid/reference/interfaces/SolidQueuer.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Defined in: [solid-pacer/src/queuer/createQueuer.ts:8](https://github.com/TanSta
readonly state: Accessor<Readonly<TSelected>>;
```

Defined in: [solid-pacer/src/queuer/createQueuer.ts:15](https://github.com/TanStack/pacer/blob/main/packages/solid-pacer/src/queuer/createQueuer.ts#L15)
Defined in: [solid-pacer/src/queuer/createQueuer.ts:17](https://github.com/TanStack/pacer/blob/main/packages/solid-pacer/src/queuer/createQueuer.ts#L17)

Reactive state that will be updated when the queuer state changes

Expand All @@ -44,7 +44,7 @@ Use this instead of `queuer.store.state`
readonly store: Store<Readonly<QueuerState<TValue>>>;
```

Defined in: [solid-pacer/src/queuer/createQueuer.ts:21](https://github.com/TanStack/pacer/blob/main/packages/solid-pacer/src/queuer/createQueuer.ts#L21)
Defined in: [solid-pacer/src/queuer/createQueuer.ts:23](https://github.com/TanStack/pacer/blob/main/packages/solid-pacer/src/queuer/createQueuer.ts#L23)

#### Deprecated

Expand Down
Loading
Loading