Skip to content

Commit 9981575

Browse files
committed
disable record methods
disabled until they are implemented upstream
1 parent e423e85 commit 9981575

File tree

1 file changed

+20
-19
lines changed

1 file changed

+20
-19
lines changed

src/client/client.ts

Lines changed: 20 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -161,25 +161,26 @@ export class Client extends EventEmitter<Events> {
161161
})
162162
}
163163

164-
public recordCreate(worldName: string): void {
165-
// TODO
166-
throw new Error('not implemented')
167-
}
168-
169-
public recordRead(worldName: string): void {
170-
// TODO
171-
throw new Error('not implemented')
172-
}
173-
174-
public recordUpdate(worldName: string): void {
175-
// TODO
176-
throw new Error('not implemented')
177-
}
178-
179-
public recordDelete(worldName: string): void {
180-
// TODO
181-
throw new Error('not implemented')
182-
}
164+
// Disable for now, suppress lint errors
165+
// public recordCreate(worldName: string): void {
166+
// // TODO
167+
// throw new Error('not implemented')
168+
// }
169+
170+
// public recordRead(worldName: string): void {
171+
// // TODO
172+
// throw new Error('not implemented')
173+
// }
174+
175+
// public recordUpdate(worldName: string): void {
176+
// // TODO
177+
// throw new Error('not implemented')
178+
// }
179+
180+
// public recordDelete(worldName: string): void {
181+
// // TODO
182+
// throw new Error('not implemented')
183+
// }
183184

184185
/**
185186
* Subscribe to local messages for an area.

0 commit comments

Comments
 (0)