Skip to content

Commit

Permalink
Make all options optional
Browse files Browse the repository at this point in the history
  • Loading branch information
russellporter committed Mar 24, 2019
1 parent 5a00e1e commit a2e9515
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ declare var osmtogeojson: osmtogeojson.OsmToGeoJsonStatic;

declare namespace osmtogeojson {
interface OsmToGeoJSONOptions {
verbose: boolean;
flatProperties: boolean;
verbose?: boolean;
flatProperties?: boolean;
// tslint:disable-next-line:no-any
uninterestingTags: any;
uninterestingTags?: any;
// tslint:disable-next-line:no-any
polygonFeatures: any;
polygonFeatures?: any;
// tslint:disable-next-line:no-any
deduplicator: any;
deduplicator?: any;
}

export interface OsmToGeoJsonStatic {
Expand Down

0 comments on commit a2e9515

Please sign in to comment.