r34-types
Version:
Types for both frontend and backend applications using kurozenzen's R34 environment.
22 lines • 603 B
TypeScript
import { PostsSort } from "./PostsSort";
import { ResultsLayout } from "./ResultsLayout";
import { Theme } from "./Theme";
export interface Preferences {
rated: boolean;
ratedThreshold: number;
originals: boolean;
cookies: boolean;
preloadVideos: boolean;
tagSuggestionsCount: number;
resultsLayout: ResultsLayout;
pageSize: number;
showMetadata: boolean;
showComments: boolean;
sort: PostsSort;
themeId: Theme;
autoPlay: boolean;
hideSeen: boolean;
showPostDetails: boolean;
backends: string[];
}
//# sourceMappingURL=Preferences.d.ts.map