mirror of
https://github.com/khairul169/code-share.git
synced 2025-06-17 17:19:34 +07:00
20 lines
314 B
TypeScript
20 lines
314 B
TypeScript
|
//
|
||
|
declare global {
|
||
|
namespace Vike {
|
||
|
interface PageContext {
|
||
|
Page: () => React.ReactElement;
|
||
|
data?: {
|
||
|
title?: string;
|
||
|
description?: string;
|
||
|
};
|
||
|
config: {
|
||
|
title?: string;
|
||
|
description?: string;
|
||
|
};
|
||
|
abortReason?: string;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export {};
|