mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-13 08:06:24 +08:00
11 lines
307 B
TypeScript
11 lines
307 B
TypeScript
import type { TldrawApp } from '@toeverything/components/board-state';
|
|
import { BaseSessionType } from '@toeverything/components/board-types';
|
|
|
|
export abstract class BaseSession extends BaseSessionType {
|
|
app: TldrawApp;
|
|
constructor(app: TldrawApp) {
|
|
super();
|
|
this.app = app;
|
|
}
|
|
}
|