Skip to content

Commit

Permalink
add type for gitcommit props
Browse files Browse the repository at this point in the history
  • Loading branch information
Freymaurer committed Jun 26, 2024
1 parent beb94ce commit 68c952a
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion packages/renderer/src/views/GitCommitView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,19 @@ import StringDialog from '../dialogs/StringDialog.vue';
import { useQuasar } from 'quasar'
const $q = useQuasar();
const iProps = reactive({
interface Props {
git_status: string[][],
error: string,
lfs_limit: number,
commit: {
name: string,
email: string,
msg: string
}
}
const iProps : Props = reactive({
git_status: [],
error: '',
lfs_limit: 1,
Expand Down

0 comments on commit 68c952a

Please sign in to comment.