Skip to content
Snippets Groups Projects
Unverified Commit 9a52a7f7 authored by Renaud Chaput's avatar Renaud Chaput Committed by GitHub
Browse files

Remove MastodonMap TS type (#24807)

parent e38b3919
No related branches found
No related tags found
No related merge requests found
import type { MastodonMap } from './util';
import type { Record } from 'immutable';
type AccountValues = {
id: number;
......@@ -6,4 +6,5 @@ type AccountValues = {
avatar_static: string;
[key: string]: any;
};
export type Account = MastodonMap<AccountValues>;
export type Account = Record<AccountValues>;
export interface MastodonMap<T> {
get<K extends keyof T>(key: K): T[K];
has<K extends keyof T>(key: K): boolean;
set<K extends keyof T>(key: K, value: T[K]): this;
}
export type ValueOf<T> = T[keyof T];
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment