mirror of
https://github.com/ajnart/homarr.git
synced 2026-01-17 04:52:15 +01:00
* ⬆️ Update dependency next-i18next to v13 * 🚨 Fix compile errors --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Manuel <manuel.ruwe@bluewin.ch>
12 lines
329 B
TypeScript
12 lines
329 B
TypeScript
import { SSRConfig } from 'next-i18next';
|
|
|
|
import { ConfigType } from './config';
|
|
|
|
export type DashboardServerSideProps = {
|
|
config: ConfigType;
|
|
// eslint-disable-next-line react/no-unused-prop-types
|
|
configName: string;
|
|
// eslint-disable-next-line react/no-unused-prop-types
|
|
_nextI18Next?: SSRConfig['_nextI18Next'];
|
|
};
|