@pandazy/capybara
Advanced tools
Comparing version 0.1.10 to 0.1.11
@@ -8,3 +8,3 @@ { | ||
"name": "@pandazy/capybara", | ||
"version": "0.1.10", | ||
"version": "0.1.11", | ||
"description": "A handy database library", | ||
@@ -11,0 +11,0 @@ "main": "dist/index.js", |
import { ns as parentNs } from '../ns'; | ||
export function ns(context: string) { | ||
return parentNs(`crud:${context}`); | ||
return parentNs(`crud:${context}`); | ||
} |
import { BasicTable, Row } from '../types'; | ||
export interface QueryParam { | ||
[key: string]: any; | ||
[key: string]: any; | ||
} | ||
export interface AddRowResult< | ||
TRow extends Row, | ||
TTable extends BasicTable<TRow> = BasicTable<TRow> | ||
TRow extends Row, | ||
TTable extends BasicTable<TRow> = BasicTable<TRow> | ||
> { | ||
newRowKeys: string[]; | ||
updatedTable: TTable; | ||
newRowKeys: string[]; | ||
updatedTable: TTable; | ||
} |
Sorry, the diff of this file is not supported yet
108026