UNPKG

sqs-producer

Version:

Enqueues messages onto a given SQS queue

16 lines (15 loc) 460 B
/** * Checks if the value is a string * @param value - The value to check */ export declare function isString(value: any): boolean; /** * Checks if the value is an object * @param value - The value to check */ export declare function isObject(value: any): boolean; /** * Checks if a MessageAttribute is valid * @param messageAttribute - The MessageAttribute to check */ export declare function isMessageAttributeValid(messageAttribute: any): boolean;