Sha256: 97f8265c88aa002a8245f8cc86cee9fa5feae3742dae909ceae226f9d06ef77a
Contents?: true
Size: 416 Bytes
Versions: 24
Compression:
Stored size: 416 Bytes
Contents
package foo:foo; interface http-types{ record request { method: string } record response { body: string } } world http-interface { export http-handler: interface { use http-types.{request,response}; handle-request: func(request: request) -> response; } import http-fetch: interface { use http-types.{request,response}; fetch-request: func(request: request) -> response; } }
Version data entries
24 entries across 24 versions & 1 rubygems