fix: 重新生成 docs

This commit is contained in:
2026-01-11 11:59:04 +08:00
parent a2f31ec5a0
commit 14aa3436cf
21 changed files with 320 additions and 7 deletions

View File

@@ -1,5 +1,5 @@
import { Message, Notification } from '@arco-design/web-react';
import { net } from '@shared';
import { net } from '../../utils';
import type { NavigateFunction } from 'react-router';
import { useGlobalStore } from '../../stores/global';
import type { AuthLoginResponse, AuthURLResponse } from './types';

View File

@@ -1,4 +1,4 @@
import type { APIResponse } from '@shared';
import type { APIResponse } from '../../utils';
export interface User {
id: string;

View File

@@ -1,4 +1,4 @@
import { type APIResponse, net } from '@shared';
import { type APIResponse, net } from '../../../utils';
import type {
Branch,
Commit,

View File

@@ -1,4 +1,4 @@
import { type APIResponse, net } from '@shared';
import { type APIResponse, net } from '../../../utils';
import type { Project } from '../types';
class ProjectService {

View File

@@ -1,4 +1,4 @@
import { type APIResponse, net } from '@shared';
import { type APIResponse, net } from '../utils';
import { create } from 'zustand';
interface User {

View File

@@ -24,7 +24,7 @@
"@pages/*": ["./src/pages/*"],
"@styles/*": ["./src/styles/*"],
"@assets/*": ["./src/assets/*"],
"@shared": ["./src/shared"]
"@shared": ["src/utils"]
}
},
"include": ["src"]