We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb5c60b commit 838f1f2Copy full SHA for 838f1f2
packages/api/src/api/app.ts
@@ -1,3 +1 @@
1
-export type App = Record<string, any> & {
2
- __app: true // for type checking
3
-} // @TODO
+export type App = any // @TODO
packages/api/src/api/component.ts
@@ -1,9 +1,7 @@
import { InspectorNodeTag } from './api'
import { ID } from './util'
4
-export type ComponentInstance = Record<string, any> & {
5
- __component: true // for type checking
6
+export type ComponentInstance = any // @TODO
7
8
export interface ComponentTreeNode {
9
uid: ID
0 commit comments