2022-02-16 11:20:17 +08:00

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 };