Files
logseq/tldraw/packages/react/src/lib/TLReactApp.ts
2022-07-03 21:38:09 +08:00

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
}