mirror of
https://github.com/khairul169/code-share.git
synced 2025-04-28 16:49:36 +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 {};
|