mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2025-12-16 06:42:53 +00:00
17 lines
442 B
TypeScript
17 lines
442 B
TypeScript
import { OutlinePane } from './views/pane';
|
|
import { OutlineBackupPane } from './views/backup-pane';
|
|
import { IconOutline } from './icons/outline';
|
|
import { intlNode } from './locale';
|
|
import { getTreeMaster } from './tree-master';
|
|
|
|
export default {
|
|
name: 'outline-pane',
|
|
props: {
|
|
icon: IconOutline,
|
|
description: intlNode('Outline Tree'),
|
|
},
|
|
content: OutlinePane,
|
|
};
|
|
|
|
export { OutlinePane, OutlineBackupPane, getTreeMaster };
|