/[sudobot]/trunk/docs/components/MDX/ValidPermissionIdentifiers.tsx
ViewVC logotype

Annotation of /trunk/docs/components/MDX/ValidPermissionIdentifiers.tsx

Parent Directory Parent Directory | Revision Log Revision Log


Revision 632 - (hide annotations)
Thu Oct 10 17:53:11 2024 UTC (5 months, 3 weeks ago) by rakinar2
File MIME type: application/typescript
File size: 454 byte(s)
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