mirror of
https://github.com/Smaug123/WoofWare.Myriad
synced 2025-10-09 14:08:39 +00:00
23 lines
492 B
Forth
23 lines
492 B
Forth
namespace SomeNamespace
|
|
|
|
open WoofWare.Myriad.Plugins
|
|
|
|
[<GenerateMock>]
|
|
type IPublicType =
|
|
abstract Mem1 : string * int -> string list
|
|
abstract Mem2 : string -> int
|
|
|
|
[<GenerateMock>]
|
|
type internal InternalType =
|
|
abstract Mem1 : string * int -> unit
|
|
abstract Mem2 : string -> int
|
|
|
|
[<GenerateMock>]
|
|
type private PrivateType =
|
|
abstract Mem1 : string * int -> unit
|
|
abstract Mem2 : string -> int
|
|
|
|
[<GenerateMock>]
|
|
type VeryPublicType<'a, 'b> =
|
|
abstract Mem1 : 'a -> 'b
|