UNPKG

react-naver-maps

Version:

React Navermaps API integration for modern development.

38 lines (36 loc) 927 B
declare type CommonOptions = { submodules?: string[]; /** * ncpKeyId로 대체됨 * */ ncpKeyId: string; }; /** @deprecated */ declare type NcpOptions = { submodules?: string[]; /** * @deprecated ncpKeyId로 대체 * ncpClientId, govClientId, finClientId 중 선택 */ ncpClientId: string; }; /** @deprecated */ declare type GovOptions = { submodules?: string[]; /** * @deprecated ncpKeyId로 대체 * ncpClientId, govClientId, finClientId 중 선택 */ govClientId: string; }; /** @deprecated */ declare type finOptions = { submodules?: string[]; /** * @deprecated ncpKeyId로 대체 * ncpClientId, govClientId, finClientId 중 선택 */ finClientId: string; }; declare type ClientOptions = CommonOptions | NcpOptions | GovOptions | finOptions; export { ClientOptions, CommonOptions, GovOptions, NcpOptions, finOptions };