infinity-forge
Version:
34 lines (33 loc) • 1.03 kB
TypeScript
import { ParsedUrlQuery } from 'querystring';
import { GetServerSidePropsContext, PreviewData } from 'next';
import { AppAtenaPageProps } from '../dynamic-sections/index.js';
export type AtenaPageProps = {
isGlobal?: boolean;
};
export declare function AtenaPage(props: AtenaPageProps): import("react/jsx-runtime").JSX.Element;
export declare function AtenaSSR(ctx: GetServerSidePropsContext<ParsedUrlQuery, PreviewData>, configurations: {
ssrFunction?: () => Promise<Record<string, any>>;
apiUrl?: string;
debugMode?: boolean;
i18n?: {
active: boolean;
};
disableAuth?: AppAtenaPageProps['disableAuth'];
modifierSections?: (sections: any) => {
sections: any;
[key: string]: any;
};
}): Promise<{
props: {
i18n?: {
words: any;
languages: any;
language: string;
languagesNext: string[];
};
page: any;
resolvedUrl: string;
disableAuth: boolean;
sections: any;
};
}>;