# Strategy

# Type Alias: Strategy

```ts
type Strategy = 
  | DebounceStrategy
  | QueueStrategy
  | ThrottleStrategy
  | BatchStrategy;
```

Defined in: [packages/db/src/strategies/types.ts:113](https://github.com/TanStack/db/blob/main/packages/db/src/strategies/types.ts#L113)

Union type of all available strategies
