File size: 269 Bytes
de6cac5 | 1 2 3 4 5 6 7 8 | import { apiRequest } from './client'
import type { VersionInfo } from '../types'
/** Non-sensitive build/version info for the footer and deploy verification. */
export async function getVersion(): Promise<VersionInfo> {
return apiRequest<VersionInfo>('/version')
}
|