1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-07-26 14:44:36 +02:00

Merge branch 'prefer-sync' of https://github.com/misskey-dev/misskey into prefer-sync

This commit is contained in:
syuilo
2026-07-26 08:50:34 +09:00

View File

@@ -36,7 +36,7 @@ type Scope = Partial<{
type ValueMeta = Partial<{
sync: boolean;
modifiedAt?: number;
modifiedAt?: number; // 設定値を変更した日時。同期した日時などではない。つまり別のデバイスでA日に変更したものをB日に同期して取得したとしてもmodifiedAtはA日である必要がある
}>;
type PrefRecord<K extends keyof PREF> = [scope: Scope, value: ValueOf<K>, meta: ValueMeta];