Skip to content

Commit

Permalink
Add optional field param to getDisplayValue
Browse files Browse the repository at this point in the history
  • Loading branch information
Bryce Godfrey committed Aug 12, 2016
1 parent ddc3de8 commit 3d0f602
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion server/global/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ declare module sn {
getAttribute(attribute: string): string;
getDisplayName(): string;
getClassDisplayValue(): string;
getDisplayValue(): string;
getDisplayValue(field?: string): string;
getED(): IElementDescriptor;
getElement(columnName: string): IGlideElement;
getEncodedQuery(): string;
Expand Down
2 changes: 1 addition & 1 deletion server/scoped-fuji/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ declare namespace sn {
///////////////////////////////////////
get(name: string, value?: string): boolean;
getDisplayName(): string;
getDisplayValue(): string;
getDisplayValue(field?: string): string;
getElement(columnName: string): IGlideElement;
getEncodedQuery(): string;
getLastErrorMessage(): string;
Expand Down
2 changes: 1 addition & 1 deletion server/scoped-geneva/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ declare namespace sn {
///////////////////////////////////////
get(name: string, value?: string): boolean;
getDisplayName(): string;
getDisplayValue(): string;
getDisplayValue(field?: string): string;
getElement(columnName: string): IGlideElement;
getEncodedQuery(): string;
getLastErrorMessage(): string;
Expand Down
2 changes: 1 addition & 1 deletion server/scoped-helsinki/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ declare namespace sn {
///////////////////////////////////////
get(name: string, value?: string): boolean;
getDisplayName(): string;
getDisplayValue(): string;
getDisplayValue(field?: string): string;
getElement(columnName: string): IGlideElement;
getEncodedQuery(): string;
getLastErrorMessage(): string;
Expand Down

0 comments on commit 3d0f602

Please sign in to comment.