aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/typings/models/account/account.ts
diff options
context:
space:
mode:
Diffstat (limited to 'server/typings/models/account/account.ts')
-rw-r--r--server/typings/models/account/account.ts7
1 files changed, 3 insertions, 4 deletions
diff --git a/server/typings/models/account/account.ts b/server/typings/models/account/account.ts
index 33940517e..cd20fe81b 100644
--- a/server/typings/models/account/account.ts
+++ b/server/typings/models/account/account.ts
@@ -1,17 +1,16 @@
1import { AccountModel } from '../../../models/account/account' 1import { AccountModel } from '../../../models/account/account'
2import { 2import {
3 MActor, 3 MActor,
4 MActorAccountChannelId,
5 MActorAPI, 4 MActorAPI,
6 MActorAudience, 5 MActorAudience,
7 MActorDefault, 6 MActorDefault,
8 MActorDefaultLight, 7 MActorDefaultLight,
8 MActorFormattable,
9 MActorId, 9 MActorId,
10 MActorServer, 10 MActorServer,
11 MActorSummary, 11 MActorSummary,
12 MActorSummaryFormattable, 12 MActorSummaryFormattable,
13 MActorUrl, 13 MActorUrl
14 MActorFormattable
15} from './actor' 14} from './actor'
16import { FunctionProperties, PickWith } from '../../utils' 15import { FunctionProperties, PickWith } from '../../utils'
17import { MAccountBlocklistId } from './account-blocklist' 16import { MAccountBlocklistId } from './account-blocklist'
@@ -35,7 +34,7 @@ export type MAccountUrl = Use<'Actor', MActorUrl>
35export type MAccountAudience = Use<'Actor', MActorAudience> 34export type MAccountAudience = Use<'Actor', MActorAudience>
36 35
37export type MAccountIdActor = MAccountId & 36export type MAccountIdActor = MAccountId &
38 Use<'Actor', MActorAccountChannelId> 37 Use<'Actor', MActor>
39 38
40export type MAccountIdActorId = MAccountId & 39export type MAccountIdActorId = MAccountId &
41 Use<'Actor', MActorId> 40 Use<'Actor', MActorId>