summaryrefslogtreecommitdiff
path: root/src-migrate/types/odoo.ts
blob: 73a029e93a09e5317f611e52d0490650327417b9 (plain)
1
2
3
4
5
6
7
export interface OdooApiRes<T> {
  status: {
    code: number;
    description: string;
  };
  result: T;
}