UNPKG

react-klasha

Version:

This is an reactJS library for implementing klasha payment gateway

7 lines (6 loc) 400 B
import { Formatter } from './Formatter'; import { CodeFrameFormatterOptions } from './CodeframeFormatter'; declare type FormatterType = undefined | 'default' | 'codeframe' | Formatter; declare type FormatterOptions = CodeFrameFormatterOptions; declare function createFormatter(type?: FormatterType, options?: FormatterOptions): Formatter; export { createFormatter, FormatterType, FormatterOptions };