UNPKG

@villedemontreal/workit-types

Version:
9 lines (8 loc) 227 B
export interface IVariables extends IReadOnlyVariables { set(key: string, value: any): void; } export interface IReadOnlyVariables<T = any> { get<K = any>(key: keyof T): K; getAll(): T; [custom: string]: any; }