@@ -19,6 +19,7 @@ declare global {
1919 const camelCase : typeof import ( 'lodash-es' ) [ 'camelCase' ]
2020 const camelize : typeof import ( 'vue' ) [ 'camelize' ]
2121 const cleanCache : typeof import ( './src/utils/pwa' ) [ 'cleanCache' ]
22+ const compressAndEncode : typeof import ( './src/composables/bin' ) [ 'compressAndEncode' ]
2223 const computed : typeof import ( 'vue' ) [ 'computed' ]
2324 const configureMarkdown : typeof import ( './src/utils/markdown-it' ) [ 'configureMarkdown' ]
2425 const copyElementContent : typeof import ( './src/utils/helpers' ) [ 'copyElementContent' ]
@@ -28,6 +29,7 @@ declare global {
2829 const createOne : typeof import ( '@vuetify/one' ) [ 'createOne' ]
2930 const createPinia : typeof import ( 'pinia' ) [ 'createPinia' ]
3031 const customRef : typeof import ( 'vue' ) [ 'customRef' ]
32+ const decodeAndDecompress : typeof import ( './src/composables/bin' ) [ 'decodeAndDecompress' ]
3133 const defineAsyncComponent : typeof import ( 'vue' ) [ 'defineAsyncComponent' ]
3234 const defineComponent : typeof import ( 'vue' ) [ 'defineComponent' ]
3335 const defineStore : typeof import ( 'pinia' ) [ 'defineStore' ]
@@ -117,6 +119,7 @@ declare global {
117119 const useAppStore : typeof import ( './src/stores/app' ) [ 'useAppStore' ]
118120 const useAttrs : typeof import ( 'vue' ) [ 'useAttrs' ]
119121 const useAuthStore : typeof import ( '@vuetify/one' ) [ 'useAuthStore' ]
122+ const useBin : typeof import ( './src/composables/bin' ) [ 'useBin' ]
120123 const useCommitsStore : typeof import ( './src/stores/commits' ) [ 'useCommitsStore' ]
121124 const useCosmic : typeof import ( './src/composables/cosmic' ) [ 'useCosmic' ]
122125 const useCssModule : typeof import ( 'vue' ) [ 'useCssModule' ]
@@ -206,6 +209,7 @@ declare module 'vue' {
206209 readonly camelCase : UnwrapRef < typeof import ( 'lodash-es' ) [ 'camelCase' ] >
207210 readonly camelize : UnwrapRef < typeof import ( 'vue' ) [ 'camelize' ] >
208211 readonly cleanCache : UnwrapRef < typeof import ( './src/utils/pwa' ) [ 'cleanCache' ] >
212+ readonly compressAndEncode : UnwrapRef < typeof import ( './src/composables/bin' ) [ 'compressAndEncode' ] >
209213 readonly computed : UnwrapRef < typeof import ( 'vue' ) [ 'computed' ] >
210214 readonly configureMarkdown : UnwrapRef < typeof import ( './src/utils/markdown-it' ) [ 'configureMarkdown' ] >
211215 readonly copyElementContent : UnwrapRef < typeof import ( './src/utils/helpers' ) [ 'copyElementContent' ] >
@@ -214,6 +218,7 @@ declare module 'vue' {
214218 readonly createOne : UnwrapRef < typeof import ( '@vuetify/one' ) [ 'createOne' ] >
215219 readonly createPinia : UnwrapRef < typeof import ( 'pinia' ) [ 'createPinia' ] >
216220 readonly customRef : UnwrapRef < typeof import ( 'vue' ) [ 'customRef' ] >
221+ readonly decodeAndDecompress : UnwrapRef < typeof import ( './src/composables/bin' ) [ 'decodeAndDecompress' ] >
217222 readonly defineAsyncComponent : UnwrapRef < typeof import ( 'vue' ) [ 'defineAsyncComponent' ] >
218223 readonly defineComponent : UnwrapRef < typeof import ( 'vue' ) [ 'defineComponent' ] >
219224 readonly defineStore : UnwrapRef < typeof import ( 'pinia' ) [ 'defineStore' ] >
@@ -298,6 +303,7 @@ declare module 'vue' {
298303 readonly useAppStore : UnwrapRef < typeof import ( './src/stores/app' ) [ 'useAppStore' ] >
299304 readonly useAttrs : UnwrapRef < typeof import ( 'vue' ) [ 'useAttrs' ] >
300305 readonly useAuthStore : UnwrapRef < typeof import ( '@vuetify/one' ) [ 'useAuthStore' ] >
306+ readonly useBin : UnwrapRef < typeof import ( './src/composables/bin' ) [ 'useBin' ] >
301307 readonly useCommitsStore : UnwrapRef < typeof import ( './src/stores/commits' ) [ 'useCommitsStore' ] >
302308 readonly useCosmic : UnwrapRef < typeof import ( './src/composables/cosmic' ) [ 'useCosmic' ] >
303309 readonly useCssModule : UnwrapRef < typeof import ( 'vue' ) [ 'useCssModule' ] >
0 commit comments