---
title: ResourceMethod
---

# ResourceMethod

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

## Summary

Named CRUD routes available for singleton resources.

## Signature

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

```