add random, add autocomplete, more smaller changes

This commit is contained in:
creations 2025-01-05 20:03:30 -05:00
parent 5fe235194b
commit 608f4d5e8d
Signed by: creations
GPG key ID: 8F553AA4320FC711
10 changed files with 1039 additions and 66 deletions

2
types/config.d.ts vendored
View file

@ -24,6 +24,7 @@ type IBooruConfigMap = {
aliases: string[];
endpoint: string;
functions: IBooruDefaults;
autocomplete?: string;
auth?: Record<string, string>;
};
};
@ -34,5 +35,6 @@ type IBooruConfig = {
aliases: string[];
endpoint: string;
functions: IBooruDefaults;
autocomplete?: string;
auth?: Record<string, string>;
};