mirror of
https://github.com/Smaug123/WoofWare.Whippet
synced 2025-10-06 08:18:39 +00:00
Some checks are pending
.NET / build (Release) (push) Waiting to run
.NET / analyzers (push) Waiting to run
.NET / build (Debug) (push) Waiting to run
.NET / check-dotnet-format (push) Waiting to run
.NET / check-nix-format (push) Waiting to run
.NET / Check links (push) Waiting to run
.NET / Check flake (push) Waiting to run
.NET / nuget-pack (push) Waiting to run
.NET / expected-pack (push) Blocked by required conditions
.NET / check-accurate-generations (push) Waiting to run
.NET / all-required-checks-complete (push) Blocked by required conditions
.NET / nuget-publish (push) Blocked by required conditions
.NET / nuget-publish-fantomas (push) Blocked by required conditions
.NET / nuget-publish-json-plugin (push) Blocked by required conditions
.NET / nuget-publish-json-attrs (push) Blocked by required conditions
.NET / nuget-publish-argparser-plugin (push) Blocked by required conditions
.NET / nuget-publish-argparser-attrs (push) Blocked by required conditions
.NET / nuget-publish-httpclient-plugin (push) Blocked by required conditions
.NET / nuget-publish-httpclient-attrs (push) Blocked by required conditions
.NET / nuget-publish-interfacemock-plugin (push) Blocked by required conditions
42 lines
1.3 KiB
Forth
42 lines
1.3 KiB
Forth
namespace SomeNamespace
|
|
|
|
open System
|
|
|
|
type IPublicType =
|
|
abstract Mem1 : string * int -> string list
|
|
abstract Mem2 : string -> int
|
|
abstract Mem3 : x : int * ?ct : System.Threading.CancellationToken -> string
|
|
|
|
type IPublicTypeInternalFalse =
|
|
abstract Mem1 : string * int -> string list
|
|
abstract Mem2 : string -> int
|
|
abstract Mem3 : x : int * ?ct : System.Threading.CancellationToken -> string
|
|
|
|
type internal InternalType =
|
|
abstract Mem1 : string * int -> unit
|
|
abstract Mem2 : string -> int
|
|
|
|
type private PrivateType =
|
|
abstract Mem1 : string * int -> unit
|
|
abstract Mem2 : string -> int
|
|
|
|
type private PrivateTypeInternalFalse =
|
|
abstract Mem1 : string * int -> unit
|
|
abstract Mem2 : string -> int
|
|
|
|
type VeryPublicType<'a, 'b> =
|
|
abstract Mem1 : 'a -> 'b
|
|
|
|
type Curried<'a> =
|
|
abstract Mem1 : int -> 'a -> string
|
|
abstract Mem2 : int * string -> 'a -> string
|
|
abstract Mem3 : (int * string) -> 'a -> string
|
|
abstract Mem4 : (int * string) -> ('a * int) -> string
|
|
abstract Mem5 : x : int * string -> ('a * int) -> string
|
|
abstract Mem6 : int * string -> y : 'a * int -> string
|
|
|
|
type TypeWithInterface =
|
|
inherit IDisposable
|
|
abstract Mem1 : string option -> string[] Async
|
|
abstract Mem2 : unit -> string[] Async
|