UNPKG

gremlin-helper

Version:

A wrapper around the gremlin client to introduce model validation and other useful functionality to use within a web api.

9 lines (8 loc) 214 B
import { IEdgeSchema } from './Schema'; export interface IEdge<T = void> { schema: IEdgeSchema<T>; } export declare class Edge<T = void> { schema: IEdgeSchema<T>; constructor(schema: IEdgeSchema<T>); }