Type Alias: PublishCallback()
type PublishCallback = (intent, publishParams) => void | Promise<PublishStatus>;
Keeping callback type as void | Promise<PublishStatus> for the publish operation, to handle promises as well
Parameters
Returns
void | Promise<PublishStatus>