mirror of
https://github.com/ksyasuda/SubMiner.git
synced 2026-03-27 06:12:05 -07:00
32 lines
799 B
TypeScript
32 lines
799 B
TypeScript
export type RuntimeOptionId =
|
|
| 'anki.autoUpdateNewCards'
|
|
| 'subtitle.annotation.nPlusOne'
|
|
| 'subtitle.annotation.jlpt'
|
|
| 'subtitle.annotation.frequency'
|
|
| 'anki.kikuFieldGrouping'
|
|
| 'anki.nPlusOneMatchMode';
|
|
|
|
export type RuntimeOptionScope = 'ankiConnect' | 'subtitle';
|
|
|
|
export type RuntimeOptionValueType = 'boolean' | 'enum';
|
|
|
|
export type RuntimeOptionValue = boolean | string;
|
|
|
|
export interface RuntimeOptionState {
|
|
id: RuntimeOptionId;
|
|
label: string;
|
|
scope: RuntimeOptionScope;
|
|
valueType: RuntimeOptionValueType;
|
|
value: RuntimeOptionValue;
|
|
allowedValues: RuntimeOptionValue[];
|
|
requiresRestart: boolean;
|
|
}
|
|
|
|
export interface RuntimeOptionApplyResult {
|
|
ok: boolean;
|
|
option?: RuntimeOptionState;
|
|
osdMessage?: string;
|
|
requiresRestart?: boolean;
|
|
error?: string;
|
|
}
|