index.ts
325 Bytes
import QxPosSelectorInput from './src/input';
import QxPosSelectorDialog from './src/dialog';
import React from 'react';
interface QxPosSelectorType extends React.FC {
Dialog: typeof QxPosSelectorDialog;
}
export const QxPosSelector = QxPosSelectorInput as QxPosSelectorType;
QxPosSelector.Dialog = QxPosSelectorDialog;