mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-11 10:20:30 +00:00
18 lines
284 B
TypeScript
18 lines
284 B
TypeScript
export class SeedDemoAbstract {
|
|
/**
|
|
* Retrieves the seeder file mapping.
|
|
* @returns {Array<>}
|
|
*/
|
|
get mapping() {
|
|
return [];
|
|
}
|
|
|
|
/**
|
|
* Retireves the seeder file import params.
|
|
* @returns {Record<string, any>}
|
|
*/
|
|
get importParams() {
|
|
return {};
|
|
}
|
|
}
|