summaryrefslogtreecommitdiffstats
path: root/src/utils/matchTypes.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils/matchTypes.d.ts')
-rw-r--r--src/utils/matchTypes.d.ts36
1 files changed, 36 insertions, 0 deletions
diff --git a/src/utils/matchTypes.d.ts b/src/utils/matchTypes.d.ts
new file mode 100644
index 00000000..18804351
--- /dev/null
+++ b/src/utils/matchTypes.d.ts
@@ -0,0 +1,36 @@
+/**
+ * @copyright Copyright (c) 2023 Daniel Kesselberg <mail@danielkesselberg.de>
+ *
+ * @author Daniel Kesselberg <mail@danielkesselberg.de>
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+/**
+ * Match a list of types against the available types
+ *
+ * @param {Array<string>} selectedTypes
+ * @param {Array<{id: string, name: string}>} options
+ */
+export declare function matchTypes(selectedTypes: Array<string>, options: Array<{
+ id: string;
+ name: string;
+}>): {
+ type: {
+ id: string;
+ name: string;
+ };
+ score: number;
+} | undefined;