mirror of
https://github.com/logseq/logseq.git
synced 2026-04-27 15:45:00 +00:00
8 lines
253 B
TypeScript
8 lines
253 B
TypeScript
import { TLApp } from '@tldraw/core'
|
|
import type { TLReactShape } from './TLReactShape'
|
|
import type { TLReactEventMap } from '~types'
|
|
|
|
export class TLReactApp<S extends TLReactShape = TLReactShape> extends TLApp<S, TLReactEventMap> {
|
|
pubEvent?: any
|
|
}
|