@h4wldev/react-naver-maps
Version:
React Navermaps API integration for modern development.
26 lines (24 loc) • 587 B
TypeScript
type NcpOptions = {
submodules?: string[];
/**
* ncpClientId, govClientId, finClientId 중 선택
*/
ncpClientId?: string;
ncpKeyId?: 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 { ClientOptions, GovOptions, NcpOptions, finOptions };