UNPKG

@microsoft/teams-js

Version:

Microsoft Client SDK for building app for Microsoft hosts

20 lines (19 loc) 659 B
import { ExternalAppErrorCode } from './constants'; /** * @hidden * Error object that can be thrown from externalAppCommands, externalAppCardCommands and other external app APIs * @internal * Limited to Microsoft-internal use */ export interface ExternalAppError { errorCode: ExternalAppErrorCode; message?: string; } /** * @hidden * Determines if the provided error object is an instance of ExternalAppError * @internal * Limited to Microsoft-internal use * @param err The error object to check whether it is of ExternalAppError type */ export declare function isExternalAppError(err: unknown): err is ExternalAppError;