UNPKG

@stadiamaps/api

Version:
51 lines 1.74 kB
/** * Stadia Maps Geospatial APIs * The Stadia Maps Geospatial APIs provide you with the data you need to build awesome applications. * * The version of the OpenAPI document: 10.1.2 * Contact: support@stadiamaps.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface OsrmBannerComponent */ export interface OsrmBannerComponent { /** * * @type {string} * @memberof OsrmBannerComponent */ text?: string; /** * * @type {string} * @memberof OsrmBannerComponent */ type?: OsrmBannerComponentTypeEnum; } /** * @export */ export declare const OsrmBannerComponentTypeEnum: { readonly Text: "text"; readonly Icon: "icon"; readonly Delimiter: "delimiter"; readonly ExitNumber: "exit-number"; readonly Exit: "exit"; readonly Lane: "lane"; }; export type OsrmBannerComponentTypeEnum = (typeof OsrmBannerComponentTypeEnum)[keyof typeof OsrmBannerComponentTypeEnum]; /** * Check if a given object implements the OsrmBannerComponent interface. */ export declare function instanceOfOsrmBannerComponent(value: object): value is OsrmBannerComponent; export declare function OsrmBannerComponentFromJSON(json: any): OsrmBannerComponent; export declare function OsrmBannerComponentFromJSONTyped(json: any, ignoreDiscriminator: boolean): OsrmBannerComponent; export declare function OsrmBannerComponentToJSON(json: any): OsrmBannerComponent; export declare function OsrmBannerComponentToJSONTyped(value?: OsrmBannerComponent | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=OsrmBannerComponent.d.ts.map