UNPKG

@davedev42/react-naver-maps

Version:

React Navermaps API integration for modern development.

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