Skip to content

Instantly share code, notes, and snippets.

View baryla's full-sized avatar
👨‍💻
Working

Adrian Barylski baryla

👨‍💻
Working
View GitHub Profile
@baryla
baryla / ICONS.md
Last active January 30, 2021 21:23
Open Source icon sets & illustrations
@baryla
baryla / store-module.ts
Last active March 7, 2023 06:45
Vue 3 + Vuex 4 - useStoreModule composable
import { useStore, Store } from "vuex";
interface InternalModule<S, A, M, G> {
state: S;
actions: A;
mutations: M;
getters: G;
}
/**