UNPKG

@h4wldev/react-naver-maps

Version:

React Navermaps API integration for modern development.

27 lines (23 loc) 523 B
export type NcpOptions = { submodules?: string[]; /** * ncpClientId, govClientId, finClientId 중 선택 */ ncpClientId?: string; ncpKeyId?: string; }; export type GovOptions = { submodules?: string[]; /** * ncpClientId, govClientId, finClientId 중 선택 */ govClientId: string; }; export type finOptions = { submodules?: string[]; /** * ncpClientId, govClientId, finClientId 중 선택 */ finClientId: string; }; export type ClientOptions = NcpOptions | GovOptions | finOptions;