Skip to content

Commit

Permalink
fix(MapTypeStyle): set attrs to optional
Browse files Browse the repository at this point in the history
Fixes #617
  • Loading branch information
sebholstein committed Sep 15, 2016
1 parent fb402f3 commit c340ffd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/services/google-maps-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -135,9 +135,9 @@ export interface MapOptions {
}

export interface MapTypeStyle {
elementType: 'all'|'geometry'|'geometry.fill'|'geometry.stroke'|'labels'|'labels.icon'|
elementType?: 'all'|'geometry'|'geometry.fill'|'geometry.stroke'|'labels'|'labels.icon'|
'labels.text'|'labels.text.fill'|'labels.text.stroke';
featureType: 'administrative'|'administrative.country'|'administrative.land_parcel'|
featureType?: 'administrative'|'administrative.country'|'administrative.land_parcel'|
'administrative.locality'|'administrative.neighborhood'|'administrative.province'|'all'|
'landscape'|'landscape.man_made'|'landscape.natural'|'landscape.natural.landcover'|
'landscape.natural.terrain'|'poi'|'poi.attraction'|'poi.business'|'poi.government'|
Expand Down

0 comments on commit c340ffd

Please sign in to comment.