misc_pterodactyl-panel/resources/scripts/api/admin/nodes/getNodeInformation.ts
2021-03-23 17:47:24 -06:00

19 lines
455 B
TypeScript

import http from '@/api/http';
export interface NodeInformation {
version: string;
system: {
type: string;
arch: string;
release: string;
cpus: number;
};
}
export default (id: number): Promise<NodeInformation> => {
return new Promise((resolve, reject) => {
http.get(`/api/application/nodes/${id}/information`)
.then(({ data }) => resolve(data))
.catch(reject);
});
};