# PaginatorHandlerCtor

`type` in `gateway` · v0.6.0

<https://docs.seedcord.org/packages/gateway/0.6.0/types/paginator-handler-ctor>

## Declaration

```ts
type PaginatorHandlerCtor<Prefix extends string> = new (
    ...args: ConstructorParameters<typeof ButtonHandler>
) => ButtonHandler<[PageCursor<Prefix>], CacheType> & {
    execute(): Promise<void>;
};
```
