UNPKG
@padhariyavishal/nextpress
Version:
latest (1.0.1)
1.0.1
1.0.0
NextJS based CMS Framework.
github.com/vishalpadhariya/nextpress
vishalpadhariya/nextpress
@padhariyavishal/nextpress
/
dist
/
src
/
collection
/
model.d.ts
10 lines
(9 loc)
•
282 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{
QueryResult
}
from
"mysql2"
;
import
{ getCollectionArgs }
from
"./types"
;
export
declare
class
CollectionModel
{
/** * *
@param
args Object of the arguments to fetch the collections. */
protected
get
(
args
: getCollectionArgs):
Promise
<
QueryResult
>; }