UNPKG
@melchyore/adonis-cache
Version:
latest (1.0.6)
1.0.6
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
Cache package for AdonisJS V5
github.com/Melchyore/adonis-cache
Melchyore/adonis-cache
@melchyore/adonis-cache
/
build
/
src
/
Utils
/
index.d.ts
7 lines
(6 loc)
•
264 B
TypeScript
View Raw
1
2
3
4
5
6
7
import
type
{
AsyncFunction
}
from
'@ioc:Adonis/Addons/Cache'
;
export
default
class
Utils
{
static
isFunction
(
value
:
unknown
): value is
AsyncFunction
;
static
sha1
(
str
:
string
):
string
;
static
chunks
(
str
:
string
,
length
:
number
):
Array
<
string
>; }