UNPKG

archfit

Version:

Validate the fitness of your AWS solutions, without the heavy lifting!

7 lines (6 loc) 203 B
import { ArchFitData } from './ArchFitData'; export interface DataStore { store(key: string, value: any): void; hasData(key: string): boolean; getData(key?: string): ArchFitData | unknown; }