UNPKG
ionic-orm-3
Version:
latest (0.0.12)
0.0.12
0.0.11
0.0.10
0.0.9
0.0.8
0.0.6
0.0.5
Data-mapper ORM for Ionic WebSQL and SQLite
github.com/BradyLiles/ionic-orm
raniel90/ionic-orm
ionic-orm-3
/
dist
/
src
/
decorator
/
tables
/
ClassTableChild.d.ts
6 lines
(5 loc)
•
253 B
TypeScript
View Raw
1
2
3
4
5
6
import
{
TableOptions
}
from
"../options/TableOptions"
;
/** * Special type of the table used in the class-table inherited tables. */
export
declare
function
ClassTableChild
(
tableName
?:
string
,
options
?:
TableOptions
):
(
target
:
Function
) =>
void
;