AndrewWalsh/at-your-service

View on GitHub
src/ui/types.ts

Summary

Maintainability
A
0 mins
Test Coverage
import type { Store } from "../data-types";

export type Options = {
  buttonPosition: "bottomLeft" | "bottomRight" | "topLeft" | "topRight";
};

export type AYSCtx = {
  store: Store;
  options: Options;
};