You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
BOB_PARTY/bob_party/src/Services/StubManager/DataManagerMatchStub.ts

21 lines
624 B

import { Match } from "../../core/match";
import IDataManagerConversation from "../IDataManagerConversation";
import IDataManagerMatch from "../IDataManagerMatch";
export default class DataManagerMatchStub implements IDataManagerMatch{
getMatchById(id: string): Match | null {
throw new Error("Method not implemented.");
}
createMatch(m: Match): void {
throw new Error("Method not implemented.");
}
updateMatch(m: Match): void {
throw new Error("Method not implemented.");
}
deleteMatch(m: Match): void {
throw new Error("Method not implemented.");
}
}