( instanceOrEngine: Instance | InstanceResource | Engine )
| 256 | }; |
| 257 | |
| 258 | export const instanceV1SupportsPackage = ( |
| 259 | instanceOrEngine: Instance | InstanceResource | Engine |
| 260 | ) => { |
| 261 | const engine = engineOfInstanceV1(instanceOrEngine); |
| 262 | return [Engine.ORACLE].includes(engine); |
| 263 | }; |
| 264 | |
| 265 | export const instanceV1SupportsSequence = ( |
| 266 | instanceOrEngine: Instance | InstanceResource | Engine |
no test coverage detected