Fork of daniellemaywood.uk/gleam — Wasm codegen work
425 B
23 lines
1// SPDX-License-Identifier: Apache-2.0
2// SPDX-FileCopyrightText: 2021 The Gleam contributors
3
4pub type Location {
5 Location(
6 href: String,
7 origin: String,
8 protocol: String,
9 host: String,
10 hostname: String,
11 port: String,
12 pathname: String,
13 search: String,
14 hash: String,
15 )
16}
17
18pub fn main() {
19 location()
20}
21
22@external(javascript, "./project_ffi.mjs", "location")
23fn location() -> Location