UNPKG

@raster-app/sanity-plugin-raster

Version:

A Sanity Studio plugin that integrates [Raster](https://raster.app) - a modern Digital Asset Management (DAM) platform that helps teams organize, optimize, and deliver their media assets with powerful AI features and an intuitive interface.

29 lines (22 loc) 628 B
import { AssetSourceComponentProps } from 'sanity'; import { Plugin as Plugin_2 } from 'sanity'; export declare interface RasterAssetSourceProps extends AssetSourceComponentProps { config: RasterConfig; } export declare interface RasterConfig { apiKey: string; orgId: string; } export declare interface RasterImage { url: string; filename: string; size?: number; width?: number; height?: number; mimeType?: string; } export declare const rasterPlugin: Plugin_2<RasterConfig>; export declare interface RasterToolProps { config: RasterConfig; } export { }