UNPKG

@viewdo/dxp-story-cli

Version:

DXP Story Management CLI

16 lines (15 loc) 602 B
import { AssetConverter } from "../services/AssetConverter"; export declare class AssetDefinition { key: string; name: string; local_path: string; remote_path: string; cdn_path: string; remote_validation_path?: string; source_path?: string; skip: boolean; converter: AssetConverter; constructor(key: string, name: string, local_path: string, remote_path: string, cdn_path: string, remote_validation_path?: string, converter?: AssetConverter, source_path?: string); convertFromRemote(content: string): string; convertFromLocal(content: string): string; }