mirror of
https://github.com/frappe/books.git
synced 2024-11-14 09:24:04 +00:00
82e67a8874
- add test boiler plate - fix import error
22 lines
344 B
TypeScript
22 lines
344 B
TypeScript
import { Fyo } from 'fyo';
|
|
import { ModelNameEnum } from 'models/types';
|
|
import test from 'tape';
|
|
|
|
export const dummyItems = [
|
|
{
|
|
name: 'Ball Pen',
|
|
rate: 50,
|
|
for: 'Both',
|
|
trackItem: true,
|
|
},
|
|
{
|
|
name: 'Ink Pen',
|
|
rate: 700,
|
|
for: 'Both',
|
|
trackItem: true,
|
|
},
|
|
];
|
|
|
|
export function createDummyItems(fyo: Fyo) {
|
|
}
|