---
title: CookieInit
---

# CookieInit

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

## Summary

Initializer for a Cookie header value.

## Signature

```ts
type CookieInit = Iterable<[string, string]> | Record<string, string>;

```