UNPKG

cms-web-apis

Version:

Biblioteca de APIs para CMS Web - Conjunto completo de funciones para interactuar con APIs de gestión de contenido

16 lines 438 B
export interface ImagenSegmento { idMediaEntity: number; nombre: string; tipoContenido: string; mimeType: string; rawMedia: string; } export interface AgregarImagenSegmentoParams { nombre: string; tipoContenido: string; mimeType: string; rawMedia: string; idEntidad: number | string; } export type AgregarImagenSegmentoResponse = ImagenSegmento; //# sourceMappingURL=apiImagenSegmento.type.d.ts.map