refactor(types): core 导出 AppOptionsConfig

This commit is contained in:
aldlss 2024-09-06 20:43:37 +08:00 committed by roymondchen
parent c343fe4775
commit dbb58e507d
2 changed files with 2 additions and 1 deletions

View File

@ -30,7 +30,7 @@ import Node from './Node';
import Page from './Page';
import { transformStyle as defaultTransformStyle } from './utils';
interface AppOptionsConfig {
export interface AppOptionsConfig {
ua?: string;
config?: MApp;
platform?: 'editor' | 'mobile' | 'tv' | 'pc';

View File

@ -26,6 +26,7 @@ export * from '@tmagic/utils';
export { default as EventHelper } from './EventHelper';
export * from './utils';
export { type AppOptionsConfig } from './App';
export { default as Env } from './Env';
export { default as Page } from './Page';
export { default as Node } from './Node';