( instanceOrEngine: Instance | InstanceResource | Engine )
| 129 | }; |
| 130 | |
| 131 | export const instanceV1HasCreateDatabase = ( |
| 132 | instanceOrEngine: Instance | InstanceResource | Engine |
| 133 | ): boolean => { |
| 134 | const engine = engineOfInstanceV1(instanceOrEngine); |
| 135 | return enginesSupportCreateDatabase().includes(engine); |
| 136 | }; |
| 137 | |
| 138 | export const instanceV1HasSSL = ( |
| 139 | instanceOrEngine: Instance | InstanceResource | Engine |
nothing calls this directly
no test coverage detected