Skip to content
This repository was archived by the owner on Aug 28, 2024. It is now read-only.

Commit 19f0cdc

Browse files
author
Tomi Tavela
authored
Implemented delete method for UserCustomAction class
1 parent 3b7278e commit 19f0cdc

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

src/sharepoint/rest/usercustomactions.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,14 @@ export class UserCustomAction extends QueryableInstance {
7373
};
7474
});
7575
}
76+
77+
/**
78+
* Remove a custom action
79+
*
80+
*/
81+
public delete(): Promise<void> {
82+
return super.delete();
83+
}
7684
}
7785

7886
export interface UserCustomActionAddResult {

0 commit comments

Comments
 (0)