151a2ea2创建于 2025年6月6日历史提交
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;