refactor(api): 统一将函数声明改为箭头函数形式

将所有api模块中的普通函数声明替换为const箭头函数形式,保持代码风格统一
This commit is contained in:
2026-07-02 15:18:39 +08:00
parent 3451d373bc
commit a4a1891a7e
3 changed files with 22 additions and 22 deletions

View File

@@ -1,7 +1,7 @@
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{ts,tsx}'],
important: '#root',
important: true,
corePlugins: {
preflight: false,
},