Parent Directory
|
Revision Log
chore: synchronize
1 | rakinar2 | 632 | import { PermissionFlagsBits } from "discord-api-types/v10"; |
2 | import { FC } from "react"; | ||
3 | |||
4 | const ValidPermissionIdentifiers: FC = () => { | ||
5 | return ( | ||
6 | <ul> | ||
7 | {Object.keys(PermissionFlagsBits).map(key => { | ||
8 | return ( | ||
9 | <li key={key}> | ||
10 | <code>{key}</code> | ||
11 | </li> | ||
12 | ); | ||
13 | })} | ||
14 | </ul> | ||
15 | ); | ||
16 | }; | ||
17 | |||
18 | export default ValidPermissionIdentifiers; |
[email protected] | ViewVC Help |
Powered by ViewVC 1.1.26 |