(key: string)
| 11 | return NSUserDefaults.standardUserDefaults.objectForKey(key); |
| 12 | }, |
| 13 | remove(key: string) { |
| 14 | NSUserDefaults.standardUserDefaults.removeObjectForKey(key); |
| 15 | }, |
| 16 | }; |
| 17 | |
| 18 | type TodoItem = { |
nothing calls this directly
no outgoing calls
no test coverage detected