mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2025-10-04 11:50:09 +00:00
8 lines
161 B
TypeScript
8 lines
161 B
TypeScript
import * as api from "./base";
|
|
|
|
export async function deleteStream(id: number): Promise<boolean> {
|
|
return await api.del({
|
|
url: `/nginx/streams/${id}`,
|
|
});
|
|
}
|