1
1
Fork 0
mirror of https://github.com/boxgaming/qbjs.git synced 2024-05-12 08:00:12 +00:00
qbjs/tools/qb2js.bi

10 lines
234 B
Plaintext

' Define web-only types and methods needed for compilation
Type FetchResponse
ok As Integer
status As Integer
statusText As String
text As String
End Type
Sub Fetch (url As String, response As FetchResponse): End Sub