DefinitelyTyped/types/react-daum-postcode/index.d.ts
2017-07-18 01:57:27 +09:00

24 lines
617 B
TypeScript

// Type definitions for react-daum-postcode 1.2
// Project: https://github.com/kimminsik-bernard/react-daum-postcode
// Definitions by: Sa-ryong Kang <https://github.com/Sa-ryong>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.2
import { Component } from 'react';
export interface DaumPostcodeProps {
onComplete?: any;
width?: any;
height?: any;
autoClose?: any;
autoResize?: any;
animation?: any;
style?: any;
defaultQuery?: any;
theme?: any;
}
export default class DaumPostcode extends Component<DaumPostcodeProps, any> {
render(): JSX.Element;
}