Files
homarr/src/types/dashboardPageType.ts
2023-01-31 21:58:55 +01:00

12 lines
328 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'];
};