make TypeWithToString private inside the shared pack

This commit is contained in:
erik-krogh
2022-12-02 09:31:11 +01:00
parent 0e426090f2
commit b1001d1a10
2 changed files with 2 additions and 2 deletions

View File

@@ -1,7 +1,7 @@
/** Provides a module for constructing a union `Either` type. */
/** A type with `toString`. */
signature class TypeWithToString {
private signature class TypeWithToString {
string toString();
}

View File

@@ -1,7 +1,7 @@
/** Provides a module for constructing optional versions of types. */
/** A type with `toString`. */
signature class TypeWithToString {
private signature class TypeWithToString {
string toString();
}