import { IInput } from "./input.interface"; import { IOutput } from "./output.interface"; export interface IUserInterface { out: IOutput; input: IInput; }