summaryrefslogtreecommitdiff
path: root/client-web/source/resource/file.ts
blob: 690c7652d69fe69a0763c66ed068f25d898ba548 (plain)
1
2
3
4
5
6
7
8
9
10
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.");
    }


}