feat(projects): @sa/axios: createRequest, createFlatRequest, createHookRequest

This commit is contained in:
Soybean
2024-01-16 01:50:12 +08:00
parent fbf4cc430d
commit bac1632457
26 changed files with 672 additions and 75 deletions

View File

@ -12,7 +12,8 @@
"dependencies": {
"colord": "2.9.3",
"crypto-js": "4.2.0",
"localforage": "1.10.0"
"localforage": "1.10.0",
"nanoid": "5.0.4"
},
"devDependencies": {
"@types/crypto-js": "4.2.1"

View File

@ -1,3 +1,4 @@
export * from './color';
export * from './crypto';
export * from './storage';
export * from './nanoid';

View File

@ -0,0 +1,3 @@
import { nanoid } from 'nanoid';
export { nanoid };