Skip to content

Commit 0e6adb7

Browse files
committed
Restore comments
Signed-off-by: Shubham Sharma <[email protected]>
1 parent 41103c1 commit 0e6adb7

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

src/actors/runtime/ActorCallType.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@ See the License for the specific language governing permissions and
1111
limitations under the License.
1212
*/
1313

14-
14+
/**
15+
* Represents the call-type associated with the method invoked by the actor runtime
16+
*/
1517
export enum ActorCallType {
1618
/**
1719
* Specifies that the method invoked is an actor interface method for a given

src/actors/runtime/StateChangeKind.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,10 @@ See the License for the specific language governing permissions and
1111
limitations under the License.
1212
*/
1313

14-
14+
/**
15+
* A enumeration that represents the kind of state change for an actor state
16+
* when saves change is called to a set of actor states.
17+
*/
1518
enum StateChangeKind {
1619
// No change in state
1720
NONE = 0,

src/enum/HttpStatusCode.enum.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,10 @@ See the License for the specific language governing permissions and
1111
limitations under the License.
1212
*/
1313

14-
14+
/**
15+
* Hypertext Transfer Protocol (HTTP) response status codes.
16+
* @see {@link https://en.wikipedia.org/wiki/List_of_HTTP_status_codes}
17+
*/
1518
enum HttpStatusCode {
1619

1720
/**

0 commit comments

Comments
 (0)