import ProxyService from './Proxy'; import { EmptyResponse, Whiteboard } from './types'; export default class WhiteboardService { proxy: ProxyService; readonly route: string; readonly server: string; constructor(proxy: ProxyService); getURL({ id, title, username }: Whiteboard.GetUrlParams): string; get(paramsOrId: Whiteboard.GetParams): Promise; create(params: Whiteboard.CreateParams): Promise; update(id: string, params: Whiteboard.UpdateParams): Promise; delete(id: string): Promise; } //# sourceMappingURL=Whiteboard.d.ts.map