> ## Documentation Index
> Fetch the complete documentation index at: https://docs.divvi.xyz/llms.txt
> Use this file to discover all available pages before exploring further.

# Type Alias: StackParamList

export const EditPage = ({editUrl, lastModified}) => {
  const formatDate = isoString => {
    if (!isoString) return null;
    try {
      const date = new Date(isoString);
      return date.toLocaleString("en-US", {
        dateStyle: "medium",
        timeStyle: "short"
      });
    } catch {
      return null;
    }
  };
  const formattedDate = formatDate(lastModified);
  return <div className="pt-6 mt-6 mb-6">
      <div className="flex flex-col sm:flex-row sm:items-center sm:justify-between gap-4">
        <a href={editUrl} target="_blank" rel="noopener noreferrer" className="inline-flex items-center gap-1.5 text-sm font-medium text-primary no-underline not-prose">
          <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round">
            <path d="M11 4H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7"></path>
            <path d="m18.5 2.5 3 3L12 15l-4 1 1-4 9.5-9.5z"></path>
          </svg>
          Suggest changes to this page
        </a>
        {formattedDate && <span className="text-sm text-gray-500 not-prose">
            Last updated: {formattedDate}
          </span>}
      </div>
    </div>;
};

[**@divvi/mobile**](../README)

***

[@divvi/mobile](../README) / StackParamList

```ts theme={null}
type StackParamList = object
```

Defined in: [packages/@divvi/mobile/src/public/navigate.ts:32](https://github.com/divvi-xyz/divvi-mobile/blob/main/packages/@divvi/mobile/src/public/navigate.ts#L32)

## Type declaration

### Add

```ts theme={null}
Add:
  | {
  tokenId: string;
 }
  | undefined;
```

### Receive

```ts theme={null}
Receive: undefined
```

### Send

```ts theme={null}
Send: undefined
```

### Swap

```ts theme={null}
Swap:
  | {
  fromTokenId: string;
  toTokenId: string;
  toTokenNetworkId: NetworkId;
 }
  | undefined;
```

### TabActivity

```ts theme={null}
TabActivity: undefined
```

### TabDiscover

```ts theme={null}
TabDiscover: undefined
```

### TabEarn

```ts theme={null}
TabEarn: undefined
```

### TabWallet

```ts theme={null}
TabWallet: undefined
```

### Withdraw

```ts theme={null}
Withdraw:
  | {
  tokenId: string;
 }
  | undefined;
```

<EditPage editUrl="https://github.com/divvi-xyz/divvi-mobile/edit/main/docs/reference/type-aliases/StackParamList.md" lastModified="2025-03-14T17:23:08.000Z" />
