feat(Permissions): add START_EMBEDDED_ACTIVITIES (#6622)

This commit is contained in:
Advaith
2021-09-23 04:47:09 -07:00
committed by GitHub
parent caa3b60c30
commit 66a90d3f89
2 changed files with 4 additions and 1 deletions

3
typings/index.d.ts vendored
View File

@@ -4477,7 +4477,8 @@ export type PermissionString =
| 'MANAGE_THREADS'
| 'USE_PUBLIC_THREADS'
| 'USE_PRIVATE_THREADS'
| 'USE_EXTERNAL_STICKERS';
| 'USE_EXTERNAL_STICKERS'
| 'START_EMBEDDED_ACTIVITIES';
export type RecursiveArray<T> = ReadonlyArray<T | RecursiveArray<T>>;