(
id: string,
change: { event: 'create' | 'update' | 'delete' },
)
| 1254 | } |
| 1255 | |
| 1256 | async watchChange( |
| 1257 | id: string, |
| 1258 | change: { event: 'create' | 'update' | 'delete' }, |
| 1259 | ): Promise<void> { |
| 1260 | return ( |
| 1261 | this.environments.client as DevEnvironment |
| 1262 | ).pluginContainer.watchChange(id, change) |
| 1263 | } |
| 1264 | |
| 1265 | async resolveId( |
| 1266 | rawId: string, |
no outgoing calls
no test coverage detected