UNPKG

@stadiamaps/api

Version:
42 lines 1.34 kB
import { Point } from './Point'; import { FeaturePropertiesV2Properties } from './FeaturePropertiesV2Properties'; /** * * @export * @interface FeaturePropertiesV2 */ export interface FeaturePropertiesV2 { /** * * @type {Array<number>} * @memberof FeaturePropertiesV2 */ bbox?: Array<number> | null; /** * * @type {Point} * @memberof FeaturePropertiesV2 */ geometry?: Point | null; /** * * @type {FeaturePropertiesV2Properties} * @memberof FeaturePropertiesV2 */ properties: FeaturePropertiesV2Properties; /** * * @type {string} * @memberof FeaturePropertiesV2 */ type?: string; } /** * Check if a given object implements the FeaturePropertiesV2 interface. */ export declare function instanceOfFeaturePropertiesV2(value: object): value is FeaturePropertiesV2; export declare function FeaturePropertiesV2FromJSON(json: any): FeaturePropertiesV2; export declare function FeaturePropertiesV2FromJSONTyped(json: any, ignoreDiscriminator: boolean): FeaturePropertiesV2; export declare function FeaturePropertiesV2ToJSON(json: any): FeaturePropertiesV2; export declare function FeaturePropertiesV2ToJSONTyped(value?: FeaturePropertiesV2 | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=FeaturePropertiesV2.d.ts.map