code-share/renderer/types.ts

20 lines
314 B
TypeScript
Raw Normal View History

2024-02-22 12:14:58 +00:00
//
declare global {
namespace Vike {
interface PageContext {
Page: () => React.ReactElement;
data?: {
title?: string;
description?: string;
};
config: {
title?: string;
description?: string;
};
abortReason?: string;
}
}
}
export {};