MCPcopy Create free account
hub / github.com/ScaleML/AgentSPEX / ExportOptions

Interface ExportOptions

yaml-flow-editor/src/utils/image.ts:8–13  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6export type ImageFormat = 'png' | 'svg' | 'pdf';
7
8export interface ExportOptions {
9 format: ImageFormat;
10 scale?: number; // Scale factor for higher resolution, default 2
11 backgroundColor?: string;
12 fileName?: string;
13}
14
15const DEFAULT_OPTIONS: Required<ExportOptions> = {
16 format: 'png',

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected