/**
 * Wrapper for binary content with metadata.
 *
 * @see "org.eclipse.scout.rt.platform.resource.BinaryResource"
 */
export interface BinaryResource {
    filename: string;
    content: string;
    contentType: string;
}
//# sourceMappingURL=BinaryResource.d.ts.map