mirror of
https://github.com/frappe/books.git
synced 2024-11-14 01:14:03 +00:00
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) {
|
||
|
}
|