@microsoft/windows-admin-center-sdk
Version:
Microsoft - Windows Admin Center Shell
21 lines (20 loc) • 413 B
TypeScript
/**
* Extends standard "Error" object to support adding extra properties.
*/
export declare class ErrorExtended<T> extends Error {
/**
* Known extended source names.
*/
static sources: {
getNoCache: string;
aadSso: string;
};
/**
* The extended error source name.
*/
extendedSource: string;
/**
* The extended content.
*/
extended: T;
}