(key: string)
| 179 | export interface ICacheObject { |
| 180 | put<T>(key: string, value?: T): T; |
| 181 | get(key: string): any; |
| 182 | } |
| 183 | export interface ITemplateCacheService extends ICacheObject {} |
| 184 | export type IController = string | IInjectable; |
no outgoing calls
no test coverage detected