mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2025-11-11 21:05:15 +00:00
9 lines
198 B
TypeScript
9 lines
198 B
TypeScript
import * as api from "./base";
|
|
import type { TokenResponse } from "./responseTypes";
|
|
|
|
export async function refreshToken(): Promise<TokenResponse> {
|
|
return await api.get({
|
|
url: "/tokens",
|
|
});
|
|
}
|