0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2024-12-23 21:53:55 -05:00

Makes the AstroCookies type importable directly from "astro" (#6006)

* re-exports the AstroCookie type from the main 'astro' types

* chore: add changeset
This commit is contained in:
Tony Sullivan 2023-01-27 11:00:24 -06:00 committed by GitHub
parent cac11c98be
commit b994f6f35e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 0 deletions

View file

@ -0,0 +1,5 @@
---
'astro': patch
---
Makes the `AstroCookies` type available as an import from the main "astro" package

View file

@ -28,6 +28,7 @@ export type {
ShikiConfig,
} from '@astrojs/markdown-remark';
export type { SSRManifest } from '../core/app/types';
export type { AstroCookies } from '../core/cookies';
export interface AstroBuiltinProps {
'client:load'?: boolean;