@module({from: "./data.json", with: {type_: "json"}})
external json: JSON.t = "default"
Compiles to:
import DataJson from "./data.json" with {"type": "json"};
var json = DataJson;
@module({from: "./data.json", with: {type_: "json"}})
external json: JSON.t = "default"
Compiles to:
import DataJson from "./data.json" with {"type": "json"};
var json = DataJson;