7 lines
89 B
TypeScript
7 lines
89 B
TypeScript
export interface INullResponseData
|
|
{
|
|
err: number;
|
|
errmsg: any;
|
|
data: null;
|
|
}
|