-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathfsharp-sig.fsi
38 lines (30 loc) · 1.52 KB
/
fsharp-sig.fsi
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
namespace SampleFile
open System
open Microsoft.FSharp.Core
type MeasureProduct<'Measure1, 'Measure2>
type MeasureInverse<'Measure>
type MeasureOne
/// <summary>Place on a class that implements ITypeProvider to extend the compiler</summary>
[<AttributeUsageAttribute(AttributeTargets.Class, AllowMultiple = false)>]
type TypeProviderAttribute =
inherit System.Attribute
/// <summary>Creates an instance of the attribute</summary>
/// <returns>TypeProviderAttribute</returns>
new : unit -> TypeProviderAttribute
/// <summary>Additional type attribute flags related to provided types</summary>
type TypeProviderTypeAttributes =
| SuppressRelocate = 0x80000000
| IsErased = 0x40000000
/// <summary>Place attribute on runtime assembly to indicate that there is a corresponding design-time
/// assembly that contains a type provider. Runtime and designer assembly may be the same. </summary>
[<AttributeUsageAttribute(AttributeTargets.Assembly, AllowMultiple = false)>]
type TypeProviderAssemblyAttribute =
inherit System.Attribute
/// <summary>Creates an instance of the attribute</summary>
/// <returns>TypeProviderAssemblyAttribute</returns>
new : unit -> TypeProviderAssemblyAttribute
/// <summary>Creates an instance of the attribute</summary>
/// <returns>TypeProviderAssemblyAttribute</returns>
/// <param name="assemblyName">The name of the design-time assembly for this type provider.</param>
new : assemblyName : string -> TypeProviderAssemblyAttribute
member AssemblyName : string