plane/web/store/dataMaps/index.ts
2024-03-05 15:08:18 +05:30

15 lines
354 B
TypeScript

import { IWebhookData, WebhookData } from "./webhook.data.store";
import { IWorkspaceData, WorkspaceData } from "./workspace.data.store";
export class DataStore {
workspace: IWorkspaceData;
webhook: IWebhookData;
constructor() {
this.workspace = new WorkspaceData(this);
this.webhook = new WebhookData(this);
}
resetOnSignOut() {}
}