From c28d6ddeab61a851dc563321a68f6b0ce0c1abd8 Mon Sep 17 00:00:00 2001 From: axolotle Date: Fri, 17 May 2024 16:39:10 +0200 Subject: [PATCH] rename js files to ts --- app/src/api/{api.js => api.ts} | 0 app/src/api/{errors.js => errors.ts} | 0 app/src/api/{handlers.js => handlers.ts} | 0 app/src/api/{index.js => index.ts} | 0 app/src/composables/{useAutoModal.js => useAutoModal.ts} | 0 app/src/helpers/{commons.js => commons.ts} | 0 app/src/helpers/data/{tree.js => tree.ts} | 0 app/src/helpers/filters/{date.js => date.ts} | 0 app/src/helpers/filters/{human.js => human.ts} | 0 .../validators/{customValidators.js => customValidators.ts} | 0 app/src/helpers/validators/{index.js => index.ts} | 0 app/src/helpers/{yunohostArguments.js => yunohostArguments.ts} | 0 app/src/i18n/{helpers.js => helpers.ts} | 0 app/src/i18n/{index.js => index.ts} | 0 app/src/i18n/{supportedLocales.js => supportedLocales.ts} | 0 app/src/{main.js => main.ts} | 0 app/src/router/{index.js => index.ts} | 0 app/src/router/{routes.js => routes.ts} | 0 app/src/store/{data.js => data.ts} | 0 app/src/store/{index.js => index.ts} | 0 app/src/store/{info.js => info.ts} | 0 app/src/store/{settings.js => settings.ts} | 0 app/src/views/_partials/{index.js => index.ts} | 0 23 files changed, 0 insertions(+), 0 deletions(-) rename app/src/api/{api.js => api.ts} (100%) rename app/src/api/{errors.js => errors.ts} (100%) rename app/src/api/{handlers.js => handlers.ts} (100%) rename app/src/api/{index.js => index.ts} (100%) rename app/src/composables/{useAutoModal.js => useAutoModal.ts} (100%) rename app/src/helpers/{commons.js => commons.ts} (100%) rename app/src/helpers/data/{tree.js => tree.ts} (100%) rename app/src/helpers/filters/{date.js => date.ts} (100%) rename app/src/helpers/filters/{human.js => human.ts} (100%) rename app/src/helpers/validators/{customValidators.js => customValidators.ts} (100%) rename app/src/helpers/validators/{index.js => index.ts} (100%) rename app/src/helpers/{yunohostArguments.js => yunohostArguments.ts} (100%) rename app/src/i18n/{helpers.js => helpers.ts} (100%) rename app/src/i18n/{index.js => index.ts} (100%) rename app/src/i18n/{supportedLocales.js => supportedLocales.ts} (100%) rename app/src/{main.js => main.ts} (100%) rename app/src/router/{index.js => index.ts} (100%) rename app/src/router/{routes.js => routes.ts} (100%) rename app/src/store/{data.js => data.ts} (100%) rename app/src/store/{index.js => index.ts} (100%) rename app/src/store/{info.js => info.ts} (100%) rename app/src/store/{settings.js => settings.ts} (100%) rename app/src/views/_partials/{index.js => index.ts} (100%) diff --git a/app/src/api/api.js b/app/src/api/api.ts similarity index 100% rename from app/src/api/api.js rename to app/src/api/api.ts diff --git a/app/src/api/errors.js b/app/src/api/errors.ts similarity index 100% rename from app/src/api/errors.js rename to app/src/api/errors.ts diff --git a/app/src/api/handlers.js b/app/src/api/handlers.ts similarity index 100% rename from app/src/api/handlers.js rename to app/src/api/handlers.ts diff --git a/app/src/api/index.js b/app/src/api/index.ts similarity index 100% rename from app/src/api/index.js rename to app/src/api/index.ts diff --git a/app/src/composables/useAutoModal.js b/app/src/composables/useAutoModal.ts similarity index 100% rename from app/src/composables/useAutoModal.js rename to app/src/composables/useAutoModal.ts diff --git a/app/src/helpers/commons.js b/app/src/helpers/commons.ts similarity index 100% rename from app/src/helpers/commons.js rename to app/src/helpers/commons.ts diff --git a/app/src/helpers/data/tree.js b/app/src/helpers/data/tree.ts similarity index 100% rename from app/src/helpers/data/tree.js rename to app/src/helpers/data/tree.ts diff --git a/app/src/helpers/filters/date.js b/app/src/helpers/filters/date.ts similarity index 100% rename from app/src/helpers/filters/date.js rename to app/src/helpers/filters/date.ts diff --git a/app/src/helpers/filters/human.js b/app/src/helpers/filters/human.ts similarity index 100% rename from app/src/helpers/filters/human.js rename to app/src/helpers/filters/human.ts diff --git a/app/src/helpers/validators/customValidators.js b/app/src/helpers/validators/customValidators.ts similarity index 100% rename from app/src/helpers/validators/customValidators.js rename to app/src/helpers/validators/customValidators.ts diff --git a/app/src/helpers/validators/index.js b/app/src/helpers/validators/index.ts similarity index 100% rename from app/src/helpers/validators/index.js rename to app/src/helpers/validators/index.ts diff --git a/app/src/helpers/yunohostArguments.js b/app/src/helpers/yunohostArguments.ts similarity index 100% rename from app/src/helpers/yunohostArguments.js rename to app/src/helpers/yunohostArguments.ts diff --git a/app/src/i18n/helpers.js b/app/src/i18n/helpers.ts similarity index 100% rename from app/src/i18n/helpers.js rename to app/src/i18n/helpers.ts diff --git a/app/src/i18n/index.js b/app/src/i18n/index.ts similarity index 100% rename from app/src/i18n/index.js rename to app/src/i18n/index.ts diff --git a/app/src/i18n/supportedLocales.js b/app/src/i18n/supportedLocales.ts similarity index 100% rename from app/src/i18n/supportedLocales.js rename to app/src/i18n/supportedLocales.ts diff --git a/app/src/main.js b/app/src/main.ts similarity index 100% rename from app/src/main.js rename to app/src/main.ts diff --git a/app/src/router/index.js b/app/src/router/index.ts similarity index 100% rename from app/src/router/index.js rename to app/src/router/index.ts diff --git a/app/src/router/routes.js b/app/src/router/routes.ts similarity index 100% rename from app/src/router/routes.js rename to app/src/router/routes.ts diff --git a/app/src/store/data.js b/app/src/store/data.ts similarity index 100% rename from app/src/store/data.js rename to app/src/store/data.ts diff --git a/app/src/store/index.js b/app/src/store/index.ts similarity index 100% rename from app/src/store/index.js rename to app/src/store/index.ts diff --git a/app/src/store/info.js b/app/src/store/info.ts similarity index 100% rename from app/src/store/info.js rename to app/src/store/info.ts diff --git a/app/src/store/settings.js b/app/src/store/settings.ts similarity index 100% rename from app/src/store/settings.js rename to app/src/store/settings.ts diff --git a/app/src/views/_partials/index.js b/app/src/views/_partials/index.ts similarity index 100% rename from app/src/views/_partials/index.js rename to app/src/views/_partials/index.ts