Files
clawbot/skills/remotion-prompt-video/node_modules/remotion/dist/cjs/Artifact.d.ts

12 lines
403 B
TypeScript

import type React from 'react';
import type { DownloadBehavior } from './download-behavior';
declare const ArtifactThumbnail: unique symbol;
export declare const Artifact: React.FC<{
readonly filename: string;
readonly content: string | Uint8Array | typeof ArtifactThumbnail;
readonly downloadBehavior?: DownloadBehavior | null;
}> & {
Thumbnail: typeof ArtifactThumbnail;
};
export {};