Monorepo containing core modules of Zeichen.
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

plugin.ts 117 B

12345
  1. export type State = {
  2. currentUserId: string,
  3. }
  4. export type Plugin<T = {}> = (config: T) => (state: State) => void