UNPKG
@zuu/owl
Version:
latest (4.0.8)
4.0.8
4.0.7
4.0.6
4.0.5
4.0.4
4.0.3
4.0.2
4.0.1-rc9
4.0.1-rc8
4.0.1-rc7
4.0.1-rc6
4.0.1-rc5
4.0.1-rc4
4.0.1-rc3
4.0.1-rc2
Zuu's Experimental GraphQL Implementation
github.com/IAmTheVex/zuu
IAmTheVex/zuu
@zuu/owl
/
build
/
interfaces
/
ResolverData.d.ts
11 lines
(10 loc)
•
259 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
{
GraphQLResolveInfo
}
from
"graphql"
;
export
interface
ArgsDictionary
{ [
argName
:
string
]:
any
; }
export
interface
ResolverData
<
ContextType
= {}> {
root
:
any
;
args
:
ArgsDictionary
;
context
:
ContextType
;
info
:
GraphQLResolveInfo
; }