aboutsummaryrefslogtreecommitdiff
path: root/client-web/source/resource/file.ts
diff options
context:
space:
mode:
Diffstat (limited to 'client-web/source/resource/file.ts')
-rw-r--r--client-web/source/resource/file.ts11
1 files changed, 11 insertions, 0 deletions
diff --git a/client-web/source/resource/file.ts b/client-web/source/resource/file.ts
new file mode 100644
index 0000000..690c765
--- /dev/null
+++ b/client-web/source/resource/file.ts
@@ -0,0 +1,11 @@
+import { TrackHandle } from "../track_handle.ts";
+import { Resource } from "./mod.ts";
+
+export class FileResource extends Resource {
+
+ on_track(_track: TrackHandle): HTMLElement {
+ throw new Error("Method not implemented.");
+ }
+
+
+}