UNPKG

empiria-trade

Version:

Empiria Trade TypeScript Library

17 lines (16 loc) 569 B
import { Observable } from 'rxjs'; import { BaseObject, BaseObjectData } from 'empiria/ontology'; export interface BrandData extends BaseObjectData { name: string; uniqueCode: string; status: string; } export declare class Brand extends BaseObject<BrandData> implements BrandData { static parse(id: number): Brand; static readonly empty: Brand; static getList(keywords?: string): Brand[]; static getListAsync(keywords?: string): Observable<Brand[]>; readonly name: string; readonly uniqueCode: string; readonly status: string; }