aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/extra-utils/bulk/bulk.ts
diff options
context:
space:
mode:
Diffstat (limited to 'shared/extra-utils/bulk/bulk.ts')
-rw-r--r--shared/extra-utils/bulk/bulk.ts10
1 files changed, 3 insertions, 7 deletions
diff --git a/shared/extra-utils/bulk/bulk.ts b/shared/extra-utils/bulk/bulk.ts
index c102383e3..a58fb3fbb 100644
--- a/shared/extra-utils/bulk/bulk.ts
+++ b/shared/extra-utils/bulk/bulk.ts
@@ -1,11 +1,11 @@
1 1
2import { BulkRemoveCommentsOfBody } from '@shared/models/bulk/bulk-remove-comments-of-body.model' 2import { BulkRemoveCommentsOfBody } from '@shared/models/bulk/bulk-remove-comments-of-body.model'
3import { HttpStatusCode } from '../../../shared/core-utils/miscs/http-error-codes' 3import { HttpStatusCode } from '../../../shared/core-utils/miscs/http-error-codes'
4import { AbstractCommand, CommonCommandOptions } from '../shared' 4import { AbstractCommand, OverrideCommandOptions } from '../shared'
5 5
6class BulkCommand extends AbstractCommand { 6export class BulkCommand extends AbstractCommand {
7 7
8 removeCommentsOf (options: CommonCommandOptions & { 8 removeCommentsOf (options: OverrideCommandOptions & {
9 attributes: BulkRemoveCommentsOfBody 9 attributes: BulkRemoveCommentsOfBody
10 }) { 10 }) {
11 const { attributes } = options 11 const { attributes } = options
@@ -18,7 +18,3 @@ class BulkCommand extends AbstractCommand {
18 }) 18 })
19 } 19 }
20} 20}
21
22export {
23 BulkCommand
24}