@livetiles/reach-plugin-types 0.5.0-preview.301 → 0.5.0-preview.302
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/index.d.ts +8 -0
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -7011,6 +7011,14 @@ declare module "libs/reach/feature/content/src/common/AppTriggerActions" {
|
|
|
7011
7011
|
itemId: string;
|
|
7012
7012
|
static create(itemId: string): RefetchStreamItemAction;
|
|
7013
7013
|
}
|
|
7014
|
+
export class PagesRecycleBinAfterDeleteAction implements AppTriggerAction {
|
|
7015
|
+
static type: string;
|
|
7016
|
+
type: string;
|
|
7017
|
+
pageId: string;
|
|
7018
|
+
parentId: string;
|
|
7019
|
+
affectedGroupIds: string[];
|
|
7020
|
+
static create(pageId: string, parentId: string, affectedGroupIds: string[]): PagesRecycleBinAfterDeleteAction;
|
|
7021
|
+
}
|
|
7014
7022
|
}
|
|
7015
7023
|
declare module "libs/reach/feature/content/src/comments/CommentFilter" {
|
|
7016
7024
|
export interface CommentFilter {
|