Skip to content

Instantly share code, notes, and snippets.

View TitasGailius's full-sized avatar

Titas Gailius TitasGailius

  • Namecheap.com
  • Vilnius, Lithuania
View GitHub Profile
export interface Module<State> {
state(): State
}
export interface FooState {
foo: String
}
export default class AuthModule implements Module<FooState> {
state() {