diff options
Diffstat (limited to 'src/content/client/BackgroundClient.ts')
| -rw-r--r-- | src/content/client/BackgroundClient.ts | 13 | 
1 files changed, 0 insertions, 13 deletions
| diff --git a/src/content/client/BackgroundClient.ts b/src/content/client/BackgroundClient.ts deleted file mode 100644 index 4a41184..0000000 --- a/src/content/client/BackgroundClient.ts +++ /dev/null @@ -1,13 +0,0 @@ -import { injectable } from 'tsyringe'; -import * as operations from '../../shared/operations'; -import * as messages from '../../shared/messages'; - -@injectable() -export default class BackgroundClient { -  execBackgroundOp(op: operations.Operation): Promise<void> { -    return browser.runtime.sendMessage({ -      type: messages.BACKGROUND_OPERATION, -      operation: op, -    }); -  } -} | 
