@nocobase/plugin-action-import
Version:
Import records using excel templates. You can configure which fields to import and templates will be generated automatically.
17 lines (16 loc) • 446 B
TypeScript
export declare class ImportValidationError extends Error {
code: string;
params?: Record<string, any>;
constructor(code: string, params?: Record<string, any>);
}
export interface ImportErrorOptions {
rowIndex: number;
rowData: any;
cause?: Error;
}
export declare class ImportError extends Error {
rowIndex: number;
rowData: any;
cause?: Error;
constructor(message: string, options: ImportErrorOptions);
}