Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions compiler/src/diagnostics/modules.re
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
open Grain_typed;

type export_kind =
type provide_kind =
| Function
| Value
| Record
| Enum
| Abstract
| Exception;
| Exception
| Module;

type export = {
type provide = {
name: string,
kind: export_kind,
kind: provide_kind,
signature: string,
};

Expand Down
Loading