UNPKG

@webfaas/webfaas-core

Version:

WebFaaS Framework - Core

9 lines (8 loc) 292 B
import { PackageStore } from "../PackageStore/PackageStore"; /** * PackageStoreCache interface */ export interface IPackageStoreCacheAsync { getPackageStore(name: string, version?: string): Promise<PackageStore | null>; putPackageStore(packageStore: PackageStore): Promise<void>; }