Skip to content

Commit

Permalink
Add methods to glide sys attachment
Browse files Browse the repository at this point in the history
  • Loading branch information
bryceg authored Jan 21, 2017
1 parent bc5e0e3 commit 063770e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion server/scoped-helsinki/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,9 @@ declare namespace sn {

export interface IGlideSysAttachment {
new (): IGlideSysAttachment;
deleteAttachment(sysId: string): void;
getContent(record: IGlideServerRecord): any;
getContentBase64(record: IGlideServerRecord): string;
copy(sourceTable: string, sourceSysId: string, destinationTable: string, destinationSysId: string): void;
write(record: IGlideServerRecord, fileName: string, contentType: string, data: any): void;
}
Expand Down Expand Up @@ -684,7 +686,8 @@ declare namespace sn {
getNodeName(): string;
hasAttribute(name: string): boolean;
getAttribute(attribute: string): string;
getChildNodeIterator(): IXMLNodeIterator;
getChildNodeIterator(): IXMLNodeIterator;
getTextContent(): string;
toString(): string;
}

Expand Down

0 comments on commit 063770e

Please sign in to comment.