brave-search
Version:
A fully typed Brave Search API wrapper, providing easy access to web search, local POI search, and automatic polling for web search summary feature.
23 lines (22 loc) • 876 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.UnitSystem = exports.FreshnessOption = exports.SafeSearchLevel = void 0;
// Enums
var SafeSearchLevel;
(function (SafeSearchLevel) {
SafeSearchLevel["Off"] = "off";
SafeSearchLevel["Moderate"] = "moderate";
SafeSearchLevel["Strict"] = "strict";
})(SafeSearchLevel || (exports.SafeSearchLevel = SafeSearchLevel = {}));
var FreshnessOption;
(function (FreshnessOption) {
FreshnessOption["PastDay"] = "pd";
FreshnessOption["PastWeek"] = "pw";
FreshnessOption["PastMonth"] = "pm";
FreshnessOption["PastYear"] = "py";
})(FreshnessOption || (exports.FreshnessOption = FreshnessOption = {}));
var UnitSystem;
(function (UnitSystem) {
UnitSystem["Metric"] = "metric";
UnitSystem["Imperial"] = "imperial";
})(UnitSystem || (exports.UnitSystem = UnitSystem = {}));
;