export interface IRefs { readonly init: () => void readonly get: (name: string) => any readonly set: (name: string, data: any) => void readonly list: () => IRefData } export type IRefData = { [key: string]: any }