Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
update samples
  • Loading branch information
wing328 committed Apr 12, 2022
commit e58646a6294a8d7fcdb9abcbfa6557e07c54fecc
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@
* @export
*/
export const UserType = {
Admin: 'admin' as 'admin',
User: 'user' as 'user'
};
Admin: 'admin',
User: 'user'
} as const;
export type UserType = typeof UserType[keyof typeof UserType];


Expand Down