mirror of
https://github.com/geoffsee/open-gsio.git
synced 2025-09-08 22:56:46 +00:00

The `FileUploadStore` and all file upload features were removed, simplifying the chat interface. This change eliminates unused code, including file handling logic, attachment management, and UI elements, streamlining the application.
16 lines
325 B
TypeScript
16 lines
325 B
TypeScript
export type { PageProps };
|
|
|
|
type Page = (pageProps: PageProps) => React.ReactElement;
|
|
type PageProps = Record<string, unknown>;
|
|
|
|
declare global {
|
|
namespace Vike {
|
|
interface PageContext {
|
|
Page: Page;
|
|
pageProps?: PageProps;
|
|
fetch?: typeof fetch;
|
|
env: import("../../workers/site/env");
|
|
}
|
|
}
|
|
}
|