@ingestkorea/client-sens
Version:
INGESTKOREA SDK Naver Cloud Platform SENS Client for Node.js.
17 lines (16 loc) • 358 B
TypeScript
export type Credentials = {
accessKey: string;
secretKey: string;
};
export type ServiceId = {
kakao: string;
sms: string;
};
export interface SensClientConfig {
credentials?: Partial<Credentials>;
serviceId?: Partial<ServiceId>;
}
export interface SensClientResolvedConfig {
credentials: Credentials;
serviceId: ServiceId;
}