Skip to content

Commit

Permalink
fix(IItem): make all IItem properties optional
Browse files Browse the repository at this point in the history
AFFECTS PACKAGES:
@esri/arcgis-rest-common-types

ISSUES CLOSED: #171
  • Loading branch information
jgravois committed May 10, 2018
1 parent 4e1c81f commit 8df9278
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions packages/arcgis-rest-common-types/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -152,11 +152,11 @@ export interface IFont {
*/
export interface IItem {
id?: string;
owner: string;
title: string;
type: string;
tags: string[];
typeKeywords: string[];
owner?: string;
title?: string;
type?: string;
tags?: string[];
typeKeywords?: string[];
description?: string;
snippet?: string;
documentation?: string;
Expand Down

0 comments on commit 8df9278

Please sign in to comment.