@equinor/mad-core
Version:
Core library for the Mobile App Delivery team
17 lines (16 loc) • 464 B
TypeScript
import { Environment } from "../../../types";
type IncidentData = {
callerEmail: string | undefined;
title: string | undefined;
description: string;
};
export type CreateIncidentResponse = {
result: {
status: string;
details: {
number: string;
};
};
};
export declare const createIncident: (data: IncidentData, env: Environment, serviceNow: string | undefined) => Promise<CreateIncidentResponse>;
export {};