9 lines
204 B
TypeScript
9 lines
204 B
TypeScript
declare const renderer: {
|
|
name: string;
|
|
serverEntrypoint: string;
|
|
jsxImportSource: string;
|
|
jsxTransformOptions: () => Promise<{
|
|
plugins: any[];
|
|
}>;
|
|
};
|
|
export default renderer;
|