about summary refs log tree commit diff
path: root/src/temp/dm/unmuteChat.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/temp/dm/unmuteChat.ts')
-rw-r--r--src/temp/dm/unmuteChat.ts30
1 files changed, 0 insertions, 30 deletions
diff --git a/src/temp/dm/unmuteChat.ts b/src/temp/dm/unmuteChat.ts
deleted file mode 100644
index e116f2775..000000000
--- a/src/temp/dm/unmuteChat.ts
+++ /dev/null
@@ -1,30 +0,0 @@
-import {Headers, XRPCError} from '@atproto/xrpc'
-
-export interface QueryParams {}
-
-export interface InputSchema {
-  chatId: string
-  [k: string]: unknown
-}
-
-export interface OutputSchema {
-  [k: string]: unknown
-}
-
-export interface CallOptions {
-  headers?: Headers
-  qp?: QueryParams
-  encoding: 'application/json'
-}
-
-export interface Response {
-  success: boolean
-  headers: Headers
-  data: OutputSchema
-}
-
-export function toKnownErr(e: any) {
-  if (e instanceof XRPCError) {
-  }
-  return e
-}