Packages

🌈 Ink bindings for Gleam! ✨

Current section

Files

Jump to
glink src style.ffi.mjs
Raw

src/style.ffi.mjs

import { BorderStyle } from "./glink/style/border_style.mjs"
export function border_style(border_style) {
if (border_style instanceof BorderStyle) {
return {
topLeft: border_style.top_left,
top: border_style.top,
topRight: border_style.top_right,
right: border_style.right,
bottomRight: border_style.bottom_right,
bottom: border_style.bottom,
bottomLeft: border_style.bottom_left,
left: border_style.left,
}
}
return border_style
}