UNPKG

@memberjunction/actions-bizapps-social

Version:

Social Media Actions for MemberJunction - Twitter, LinkedIn, Facebook, Instagram, TikTok, YouTube, HootSuite, Buffer

25 lines 863 B
import { HootSuiteBaseAction } from '../hootsuite-base.action'; import { ActionParam, ActionResultSimple, RunActionParams } from '@memberjunction/actions-base'; import { MediaFile } from '../../../base/base-social.action'; /** * Action to create a scheduled post in HootSuite */ export declare class HootSuiteCreateScheduledPostAction extends HootSuiteBaseAction { /** * Create a scheduled post in HootSuite */ protected InternalRunAction(params: RunActionParams): Promise<ActionResultSimple>; /** * Validate media files before upload */ protected validateMediaFile(file: MediaFile): void; /** * Define the parameters this action expects */ get Params(): ActionParam[]; /** * Get action description */ get Description(): string; } //# sourceMappingURL=create-scheduled-post.action.d.ts.map