flotta-sdk
Version:
Flotta API wrapper
19 lines (17 loc) • 344 B
text/typescript
import { Address, Geometry } from './common';
export type InputStore = {
name: string,
email: string,
phone?: Array<string>,
address: Address,
position: Geometry,
};
export type Store = {
_id: string,
_businessHolder: string,
name: string,
email: string,
phone?: Array<string>,
address: Address,
position: Geometry,
};