astro-ghostcms/.pnpm-store/v3/files/bb/8c790479da2c1bc258450b56c46...

11 lines
321 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
export type Fallback = 'none' | 'animate' | 'swap';
export type Direction = 'forward' | 'back';
export type NavigationTypeString = 'push' | 'replace' | 'traverse';
export type Options = {
history?: 'auto' | 'push' | 'replace';
info?: any;
state?: any;
formData?: FormData;
sourceElement?: Element;
};