Files
dbgate/plugins/dbgate-plugin-dbf/src/frontend/index.js
SPRINX0\prochazka 2521f05526 DBF reader plugin
2025-01-07 17:24:56 +01:00

26 lines
530 B
JavaScript

const fileFormat = {
packageName: 'dbgate-plugin-dbf',
// file format identifier
storageType: 'dbf',
// file extension without leading dot
extension: 'dbf',
// human readable file format name
name: 'DBF',
// function name from backend, which contains reader factory, postfixed by package name
readerFunc: 'reader@dbgate-plugin-dbf',
args: [
{
type: 'text',
name: 'encoding',
label: 'Encoding',
apiName: 'encoding',
},
],
};
export default {
fileFormats: [fileFormat],
};