UNPKG

lml-main

Version:

This is now a mono repository published into many standalone packages.

11 lines (10 loc) 276 B
import { SelectOption } from 'cosmoui'; export interface Customer { accountNumber: string; refId: string; name: string; phone: string; } export interface CustomerOption extends Customer, SelectOption { } export declare type CustomerOptions = CustomerOption[];