# FindScreenshotsFn

**Kind:** Type

**Source:** [`atloria-monorepo/libs/pme-core/src/tools/find-screenshots.tool.ts`](https://github.com/sherkety/atloria/blob/main/atloria-monorepo/libs/pme-core/src/tools/find-screenshots.tool.ts#L15)

Function signature for querying screenshots.
Injected at creation time — wraps PrismaService.screenshot.findMany().

## Definition

```ts
(
  projectId: string,
  options?: {
    urlPattern?: string;
    featureArea?: string;
    pageType?: string;
    viewport?: string;
    limit?: number;
  }
) => Promise<ScreenshotInfo[]>
```
