# AnyFunction

# Type Alias: AnyFunction()

```ts
type AnyFunction = (...args) => any;
```

Defined in: [types.ts:4](https://github.com/TanStack/pacer/blob/main/packages/pacer/src/types.ts#L4)

Represents a function that can be called with any arguments and returns any value.

## Parameters

### args

...`any`[]

## Returns

`any`
