interface IExampleInterface {
property1: number;
property2: string;
};
function test(props: IExampleInterface): IExampleInterface {
return {
...props,
property1: 123,
property2: 'test',
property3: 1 // Нет ошибки передачи
};
}