removed explicit string

This commit is contained in:
Fractal-Tess
2022-09-16 16:52:24 +03:00
parent d57f50d5b2
commit db7753beec

View File

@@ -2,7 +2,7 @@
import { invoke } from '@tauri-apps/api';
let hashInput = 'Hello world';
let hashOutput: string = '';
let hashOutput = '';
$: (async () => {
hashOutput = await invoke('hash256sum', { hashInput });
})();