fix: optimize interface type export

This commit is contained in:
AndyJin 2023-03-23 16:13:26 +08:00 committed by 刘菊萍(絮黎)
parent 203568ea2d
commit 4ddff259f8

View File

@ -1,4 +1,6 @@
export { Workspace, IWorkspace } from './workspace';
export { Workspace } from './workspace';
export type { IWorkspace } from './workspace';
export * from './window';
export * from './layouts/workbench';
export { Resource, IResource } from './resource';
export { Resource } from './resource';
export type { IResource } from './resource';