2024-08-21 12:19:12 +08:00

7 lines
94 B
TypeScript

export type PbErrorData = {
[key: string]: {
message: string;
code: string;
};
};