(feat): improved mobile notifications
(feat): add lint rules (feat): improve markdown inline code box
This commit is contained in:
parent
336b9464c9
commit
4a841de073
35 changed files with 777 additions and 287 deletions
|
|
@ -1,14 +1,14 @@
|
|||
type StringKeyOf<T> = Extract<keyof T, string>;
|
||||
|
||||
type SettingDefinition = {
|
||||
display: string;
|
||||
type: string;
|
||||
default?: unknown;
|
||||
};
|
||||
|
||||
|
||||
export type SettingsSchema = Record<
|
||||
string,
|
||||
Record<string, Record<string, SettingDefinition>>
|
||||
Record<string, Record<string, {
|
||||
display: string;
|
||||
type: string;
|
||||
default?: unknown;
|
||||
}>>
|
||||
>;
|
||||
|
||||
const settings = {
|
||||
|
|
|
|||
Loading…
Reference in a new issue