UNPKG

simple2k13

Version:
10 lines (9 loc) 224 B
interface Func<T = unknown> { (...params: any[]): T; } declare class ComputeStore { store: Map<Func, Map<string, any>>; constructor(); get<T>(func: Func<T>, ...args: any[]): T; } export default ComputeStore;