stellate
Version:
The CLI you need to work with Stellate from your CLI. See https://docs.stellate.co/docs/cli for the complete documentation.
17 lines (13 loc) • 407 B
text/typescript
import { Plugin } from '@envelop/core';
interface Options {
serviceName: string;
token: string;
fetch: typeof fetch;
sendVariablesAsHash?: boolean;
schemaSyncing?: boolean;
}
declare function createBlake3Hash(str: string): number;
declare const createStellateLoggerPlugin: (opts: Options) => Plugin<{
request: Request;
}>;
export { createBlake3Hash, createStellateLoggerPlugin };