angular-kladr
Version:
Angular 4+ package for better experience using kladr api service
21 lines (20 loc) • 622 B
TypeScript
import { KladrContentType } from './kladr-content-type.enum';
import { KladrWithParent } from './kladr-with-parent.enum';
import { KladrCodeType } from './kladr-code-type.enum';
import { KladrOneString } from './kladr-one-string.enum';
export interface KladrSearchContext {
token?: string;
key?: string;
contentType?: KladrContentType;
query?: string;
withParent?: KladrWithParent;
limit?: number;
regionId?: string;
disctrictId?: string;
cityId?: string;
streetId?: string;
buildingId?: string;
typeCode?: KladrCodeType;
zip?: number;
oneString?: KladrOneString;
}