import defaultCommon from './index';
interface DefaultText {
title: string;
file: string[];
com_width: number;
com_height: number;
common_config: object;
}
const defaultText: DefaultText = {
title: '文件',
file: [],
com_width: 150,
com_height: 66,
common_config: defaultCommon
};
export default defaultText;