This interface is used to configure Raw Exporter and Text Exporter settings.
interface Exporter {
// Properties
${path}: string;
${overwrite}?: boolean;
${nocache}?: boolean;
}
// This interface is not available in managed environment
// This interface is not available in native environment
path: string;
// This property is not available in managed environment
// This property is not available in native environment
Full path to the destination file.
overwrite?: boolean;
// This property is not available in managed environment
// This property is not available in native environment
Optional boolean
parameter that tells if the file must be overwritten. If omitted, defaults to false
.
nocache?: boolean;
// This property is not available in managed environment
// This property is not available in native environment
Optional boolean
parameter that tells if disk cache should not be used. If omitted, defaults to false
.