@flatfile/plugin-view-mapped
Version:
A plugin for making the view post mapping show only mapped columns.
15 lines (12 loc) • 423 B
text/typescript
import { FlatfileListener } from '@flatfile/listener';
interface ViewMappedOptions {
/**
* If true, the plugin will skip removal of required fields
*/
keepRequiredFields?: boolean;
}
/**
* This plugin allows you to make the post-mapping sheet only display mapped data
*/
declare function viewMappedPlugin(options: ViewMappedOptions): (listener: FlatfileListener) => void;
export { viewMappedPlugin };