UNPKG

ringcentral-widgets

Version:
21 lines (19 loc) 265 B
export interface CallLogDialpadProps { onChange: (string: DtmfValue) => void; onClose: () => {}; className: string; isWide: boolean; } export type DtmfValue = | '0' | '1' | '2' | '3' | '4' | '5' | '6' | '7' | '8' | '9' | '#' | '*';