variate.d.ts 338 B

123456789101112131415
  1. declare module '@vben/types/global' {
  2. interface ApplicationConfig {
  3. api_url?: string;
  4. api_fields?: {
  5. codeField?: string;
  6. dataField?: string;
  7. messageField?: string;
  8. successCode?: number | string;
  9. };
  10. sys_department_pid?: string;
  11. }
  12. }
  13. export { type ApplicationConfig } from '@vben/types/global';