UNPKG

@qbcart/company-localdb

Version:

The client-side database used across the QBCart Company ecosystem.

15 lines (14 loc) 413 B
/*********************************************** * @license * Copyright (c) QBCart Inc. All rights reserved. ************************************************/ import type { SearchResult } from 'minisearch'; export default interface LineItem extends SearchResult { id: string; _ts: number; IsActive: boolean; Name: string; FullName: string; SalesDesc: string; IsCategory: boolean; }