7 lines
94 B
TypeScript
7 lines
94 B
TypeScript
export type PbErrorData = {
|
|
[key: string]: {
|
|
message: string;
|
|
code: string;
|
|
};
|
|
};
|