2022-05-08 13:30:07 +03:00

16 lines
557 B
TypeScript

import type { NormalizedCacheObject } from '@apollo/client';
import type { User } from 'services/user/types';
import type { CalculationOptions } from 'stores/calculation/options/types';
import type { CalculationStatuses } from 'stores/calculation/statuses/types';
import type { CalculationValues } from 'stores/calculation/values/types';
export interface BasePageProps {
user: User;
initialApolloState: NormalizedCacheObject;
calculation?: {
values: CalculationValues;
statuses?: CalculationStatuses;
options?: CalculationOptions;
};
}