Updates
This commit is contained in:
+14
-1
@@ -272,7 +272,20 @@ export type BunextPageProps<
|
||||
Q extends { [k: string]: any } = { [k: string]: any },
|
||||
> = BunextPageModuleServerReturn<T, Q>;
|
||||
|
||||
export type BunextPageModuleServerReturnURLObject = URL & {};
|
||||
export type BunextPageModuleServerReturnURLObject = {
|
||||
hash: string;
|
||||
host: string;
|
||||
hostname: string;
|
||||
href: string;
|
||||
origin: string;
|
||||
password: string;
|
||||
pathname: string;
|
||||
port: string;
|
||||
protocol: string;
|
||||
search: string;
|
||||
searchParams: Record<string, string>;
|
||||
username: string;
|
||||
};
|
||||
|
||||
export type BunextPageModuleServerRedirect = {
|
||||
destination: string;
|
||||
|
||||
Reference in New Issue
Block a user