aboutsummaryrefslogtreecommitdiff
path: root/source/models.ts
diff options
context:
space:
mode:
Diffstat (limited to 'source/models.ts')
-rw-r--r--source/models.ts11
1 files changed, 0 insertions, 11 deletions
diff --git a/source/models.ts b/source/models.ts
deleted file mode 100644
index 45a3825..0000000
--- a/source/models.ts
+++ /dev/null
@@ -1,11 +0,0 @@
-
-export interface CallDocModel {
- offer: SessionModel
- offer_candidates: CandidateModel[]
- on_answer: (a: SessionModel) => void
- on_offer_candidate: (a: CandidateModel) => void
- on_answer_candidate: (a: CandidateModel) => void
- answered: boolean
-}
-export type CandidateModel = any
-export type SessionModel = any