UNPKG

@tokens-studio/graph-engine

Version:

An execution engine to handle Token Studios generators and resolvers

14 lines 404 B
import { CapabilityFactory } from '../graph/index.js'; export type SecretConfig = { secret: string; key: string; }; export interface SecretCapability { getSecret(config: SecretConfig): Promise<string>; } /** * This is a dummy factory that shows how to suport the secret capability * @returns */ export declare const SecretCapability: CapabilityFactory; //# sourceMappingURL=secret.d.ts.map