mindee
Version:
Mindee Client Library for Node.js
13 lines (12 loc) • 332 B
TypeScript
import { StringDict } from "../../../parsing/stringDict.js";
/**
* Representation of an execution's file info.
* @category Workflow
*/
export declare class ExecutionFile {
/** File name. */
name: string | null;
/** Optional alias for the fil. */
alias: string | null;
constructor(jsonResponse: StringDict);
}