Skip to content

Commit

Permalink
Update enum values in types.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
b3hr4d committed Apr 24, 2024
1 parent 1837563 commit 0ab1b18
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/visitor/src/details/returns/types.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import type { BaseActor, FunctionName, FunctionType } from "../../types"

export enum Status {
Visible = 0, // Default
Hidden = 1,
Hidden = 0,
Visible = 1, // Default
Table = 2,
Grid = 3,
Card = 4,
Expand Down

0 comments on commit 0ab1b18

Please sign in to comment.