import IData from "./IData";
export default interface IResponse {
    type: string;
    data: IData;
}
