diff options
| author | Hazelnoot <acomputerdog@gmail.com> | 2025-06-07 18:49:37 -0400 |
|---|---|---|
| committer | Hazelnoot <acomputerdog@gmail.com> | 2025-06-07 18:49:37 -0400 |
| commit | 73eeabc118d455a385ecc53e2801fe6df294e18a (patch) | |
| tree | 07ba0ab218d71232b33c65e82dd48d6008a4f1a9 /locales/index.d.ts | |
| parent | fix TS errors about user, info, and init (diff) | |
| download | sharkey-73eeabc118d455a385ecc53e2801fe6df294e18a.tar.gz sharkey-73eeabc118d455a385ecc53e2801fe6df294e18a.tar.bz2 sharkey-73eeabc118d455a385ecc53e2801fe6df294e18a.zip | |
add ActivityPub representation to admin-user.vue
Diffstat (limited to 'locales/index.d.ts')
| -rw-r--r-- | locales/index.d.ts | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/locales/index.d.ts b/locales/index.d.ts index 33b63e44c5..f9fcbdb238 100644 --- a/locales/index.d.ts +++ b/locales/index.d.ts @@ -13245,6 +13245,18 @@ export interface Locale extends ILocale { * Note controls */ "noteFooterLabel": string; + /** + * Packed user data in its raw form. Most of these fields are public and visible to all users. + */ + "rawUserDescription": string; + /** + * Extended user data in its raw form. These fields are private and can only be accessed by moderators. + */ + "rawInfoDescription": string; + /** + * ActivityPub user data in its raw form. These fields are public and accessible to other instances. + */ + "rawApDescription": string; } declare const locales: { [lang: string]: Locale; |