module rec Glutinum
open Fable.Core
open Fable.Core.JsInterop
open System
[<AbstractClass>]
[<Erase>]
type Exports =
[<Import("Signature", "REPLACE_ME_WITH_MODULE_NAME"); EmitConstructor>]
static member Signature () : Signature = nativeOnly
[<AllowNullLiteral>]
[<Interface>]
type Signature =
abstract member toSVG: ?{ includeBackgroundColor }: ToSVGOptions -> string
Problem description
We should just generate something like
module rec Glutinum
open Fable.Core
open Fable.Core.JsInterop
open System
[<AbstractClass>]
[<Erase>]
type Exports =
[<Import("Signature", "REPLACE_ME_WITH_MODULE_NAME"); EmitConstructor>]
static member Signature () : Signature = nativeOnly
[<AllowNullLiteral>]
[<Interface>]
type Signature =
abstract member toSVG: arg1: ToSVGOptions -> string
TODO: Handle the case where such a transformation is applied to several arguments (arg1, arg2, etc.)
Issue created from Glutinum Tool
Glutinum version - 0.9.0-preview
TypeScript
FSharp
Problem description
We should just generate something like
TODO: Handle the case where such a transformation is applied to several arguments (arg1, arg2, etc.)