Files
2026-06-10 13:10:20 +08:00

6 lines
233 B
TypeScript

export function resolveShareCode(data: { code: string; fingerprint: string; referer?: string }) {
return $request.post(
{ url: '/shortLink/resolve', params: data },
{ requestOptions: { withToken: false } }
)
}