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