mirror of
https://github.com/pnp/sp-dev-fx-webparts.git
synced 2025-02-15 09:25:24 +00:00
7 lines
111 B
TypeScript
7 lines
111 B
TypeScript
|
export interface IError {
|
||
|
message: string;
|
||
|
status: number;
|
||
|
code: string;
|
||
|
statusText: string;
|
||
|
}
|