admin-vben/packages/preferences/src/index.ts

18 lines
501 B
TypeScript
Raw Normal View History

import type { Preferences } from '@vben-core/preferences';
import type { DeepPartial } from '@vben-core/typings';
/**
* app使
* @vben-core/preferences
* @param preferences
* @returns
*/
function defineOverridesPreferences(preferences: DeepPartial<Preferences>) {
return preferences;
}
export { defineOverridesPreferences };
export * from '@vben-core/preferences';