From 093daa8fd24d2ee296c5ba0967569872e9333555 Mon Sep 17 00:00:00 2001 From: sharevb Date: Tue, 2 Apr 2024 09:02:56 +0200 Subject: [PATCH] feat(ASCII Art Drawer): add coding languages support Add support for outputing in many coding languages (Python , bash....) FIx other part of #934 --- components.d.ts | 1 + .../ascii-text-drawer/ascii-text-drawer.vue | 21 +++++++++++++++---- src/utils/ascii-lang-utils.ts | 1 + 3 files changed, 19 insertions(+), 4 deletions(-) diff --git a/components.d.ts b/components.d.ts index e31119b3..f2c3146f 100644 --- a/components.d.ts +++ b/components.d.ts @@ -159,6 +159,7 @@ declare module '@vue/runtime-core' { RouterLink: typeof import('vue-router')['RouterLink'] RouterView: typeof import('vue-router')['RouterView'] RsaKeyPairGenerator: typeof import('./src/tools/rsa-key-pair-generator/rsa-key-pair-generator.vue')['default'] + SafelinkDecoder: typeof import('./src/tools/safelink-decoder/safelink-decoder.vue')['default'] SlugifyString: typeof import('./src/tools/slugify-string/slugify-string.vue')['default'] SpanCopyable: typeof import('./src/components/SpanCopyable.vue')['default'] SqlPrettify: typeof import('./src/tools/sql-prettify/sql-prettify.vue')['default'] diff --git a/src/tools/ascii-text-drawer/ascii-text-drawer.vue b/src/tools/ascii-text-drawer/ascii-text-drawer.vue index 9a6520a4..7cd163a3 100644 --- a/src/tools/ascii-text-drawer/ascii-text-drawer.vue +++ b/src/tools/ascii-text-drawer/ascii-text-drawer.vue @@ -1,8 +1,10 @@