UNPKG

@minka/nx-remote-cache

Version:

This repository provides an NX runner that utilizes a Google Cloud Platform (GCP) bucket as distributed cache storage.

10 lines (9 loc) 509 B
import { CustomRunnerOptions, RemoteCacheImplementation } from "nx-remotecache-custom"; interface GCSRunnerOptions { project_id?: string; bucket?: string; } declare const createStorageInterface: (options: CustomRunnerOptions<GCSRunnerOptions>) => Promise<RemoteCacheImplementation>; declare const _default: import("nx/src/tasks-runner/tasks-runner").TasksRunner<import("nx/src/tasks-runner/default-tasks-runner").DefaultTasksRunnerOptions>; export default _default; export { createStorageInterface };