blob: ed73f60e7832e2136077190d178a3cce89d6a7cd [file] [log] [blame]
dictionary ConfigOptions {
required DOMString endpoint;
boolean useCache = true;
long timeout = 5000;
sequence<DOMString>? tags;
};
dictionary ExtendedOptions : ConfigOptions {
DOMString? userToken;
DOMString mode = "default";
};
interface Configurable {
void applySettings(optional ExtendedOptions options);
};