@qbcart/company-localdb
Version:
The client-side database used across the QBCart Company ecosystem.
14 lines (13 loc) • 393 B
TypeScript
/***********************************************
* @license
* Copyright (c) QBCart Inc. All rights reserved.
************************************************/
import type { SearchResult } from 'minisearch';
export default interface Customer extends SearchResult {
id: string;
_ts: number;
IsActive: boolean;
Name: string;
Location: string;
SalesRepListId: string;
}