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
[typescript-axios] update samples
  • Loading branch information
mkusaka committed Apr 12, 2022
commit f0fad970ab3c91ba81bcd45f672d6c9beb0172d1
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