Most reactive features done

This commit is contained in:
2022-07-25 06:52:08 +10:00
parent 89b881e081
commit caae3a4380
3 changed files with 192 additions and 148 deletions

View File

@@ -10,7 +10,7 @@ interface order {
interface orderItem {
id: number
qty: number
print_group_id: print_group
print_group: print_group
item: item
cover: number
}
@@ -108,4 +108,8 @@ type sales_category = {
interface Array<T> {
where(property: string, value: any): T
first(): T
last(): T
unique(): this
collect(func: (item: T) => T[]): T[]
}