@boligmappa/web-component-search
Version:
Web component for interacting with the Boligmappa APIs
22 lines • 885 B
TypeScript
import SearchType from "../enums/search-type";
import TableType from "../enums/table-type";
import { AddressModel } from "./address-model";
import { BuildingModel } from "./building-model";
import { CadastreModel } from "./cadastre-model";
import { ProjectModel } from "./project-model";
import { PropertyModel } from "./property-model";
import { StreetModel } from "./street-model";
export interface TableInputModel {
tableType?: TableType;
searchType?: SearchType;
selectedStreet?: StreetModel;
selectedAddress?: AddressModel;
selectedBuilding?: BuildingModel;
streetListData?: StreetModel[];
projectListData?: ProjectModel[];
cadastreListData?: CadastreModel[];
addressListData?: AddressModel[];
buildingListData?: BuildingModel[];
propertyListData?: PropertyModel[];
}
//# sourceMappingURL=table-input-model.d.ts.map