mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-20 08:56:29 +00:00
8 lines
251 B
TypeScript
8 lines
251 B
TypeScript
|
|
import axios from 'api';
|
||
|
|
import { AxiosResponse } from 'axios';
|
||
|
|
import { AllIntegrationsProps } from 'types/api/integrations/types';
|
||
|
|
|
||
|
|
export const getAllIntegrations = (): Promise<
|
||
|
|
AxiosResponse<AllIntegrationsProps>
|
||
|
|
> => axios.get(`/integrations`);
|