import { ApolloCache } from 'apollo-cache'; import Log from './Log'; export interface TriggerFunctionConfig { log: Log; cache: ApolloCache; } declare const _default: ({log, cache}: TriggerFunctionConfig) => (persist: () => void) => () => void; export default _default;