---
title: ResourcesMethod
source: https://github.com/remix-run/remix/blob/main/packages/routes/src/lib/route-helpers/resources.ts#L8
---

# ResourcesMethod

## Summary

Named CRUD routes available for resource collections.

## Signature

```ts
type ResourcesMethod =
  | "index"
  | "new"
  | "show"
  | "create"
  | "edit"
  | "update"
  | "destroy";

```