UNPKG

@graphprotocol/graph-cli

Version:

CLI for building for and deploying to The Graph

11 lines (10 loc) 295 B
import immutable from 'immutable'; export interface SubgraphOptions { manifest?: any; resolveFile: (path: string) => string; protocol?: any; } export interface Subgraph extends SubgraphOptions { validateManifest(): immutable.List<any>; handlerTypes(): immutable.List<any>; }