diff --git a/packages/api/src/api/app.ts b/packages/api/src/api/app.ts index bdd6f1f81..9873b8c54 100644 --- a/packages/api/src/api/app.ts +++ b/packages/api/src/api/app.ts @@ -1,3 +1 @@ -export type App = Record & { - __app: true // for type checking -} // @TODO +export type App = any // @TODO diff --git a/packages/api/src/api/component.ts b/packages/api/src/api/component.ts index d7681a445..47202594e 100644 --- a/packages/api/src/api/component.ts +++ b/packages/api/src/api/component.ts @@ -1,9 +1,7 @@ import { InspectorNodeTag } from './api' import { ID } from './util' -export type ComponentInstance = Record & { - __component: true // for type checking -} // @TODO +export type ComponentInstance = any // @TODO export interface ComponentTreeNode { uid: ID