UNPKG

@botonic/plugin-flow-builder

Version:

Use Flow Builder to show your contents

10 lines (9 loc) 533 B
import { HtMediaFileLocale, HtQueueLocale, HtTextLocale, HtVideoLocale } from './hubtype-fields'; export declare abstract class ContentFieldsBase { readonly id: string; constructor(id: string); static getTextByLocale(locale: string, text: HtTextLocale[]): string; static getAssetByLocale(locale: string, asset: HtMediaFileLocale[]): string; static getVideoByLocale(locale: string, video: HtVideoLocale[]): string; static getQueueByLocale(locale: string, queues: HtQueueLocale[]): HtQueueLocale | undefined; }