UNPKG

stellate

Version:

The CLI you need to work with Stellate from your CLI. See https://docs.stellate.co/docs/cli for the complete documentation.

15 lines (11 loc) 408 B
import { ApolloServerPlugin } from '@apollo/server'; interface Options { serviceName: string; token: string; fetch: typeof fetch; sendVariablesAsHash?: boolean; schemaSyncing?: boolean; } declare function createBlake3Hash(str: string): number; declare const createStellateLoggerPlugin: (options: Options) => ApolloServerPlugin; export { createBlake3Hash, createStellateLoggerPlugin };