mirror of
https://github.com/ajnart/homarr.git
synced 2025-11-11 16:05:47 +01:00
11 lines
327 B
TypeScript
11 lines
327 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'];
|
|
};
|