import IBrand from '../../Interfaces/Brand'; import IUpdate from '../../Interfaces/Operations/IUpdate'; import { BaseServiceClass } from '../baseService'; /** * Brand class */ export default class Brand extends BaseServiceClass { static fetchBrands: ({ app, api }: { readonly app: string; readonly api: string; }) => Promise; /** * Get the brand properties */ data: () => IBrand; save: (partialBrand?: Partial) => Promise; private _updateDependancies; private _uploadImages; /** * Gett all updates */ private _getUpdates; updates: { get: () => Promise; }; }