---
title: ResourcesMethod
---

# ResourcesMethod

<a href="https://github.com/remix-run/remix/blob/remix@3.0.0-alpha.6/packages/fetch-router/src/lib/route-helpers/resources.ts#L8" target="_blank">View Source</a>

## Summary

Named CRUD routes available for resource collections.

## Signature

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

```