UNPKG

@open-tender/store

Version:

A library of hooks, reducers, utility functions, and types for use with Open Tender applications that utilize our in-store POS API

12 lines (11 loc) 458 B
import { KioskSignInType } from '@open-tender/types'; import { SignInProps } from '@open-tender/ui'; import { ReactNode } from 'react'; declare const SignIn: ({ setSignInType, greeting, punctuation, navigate, children }: { setSignInType: (signInType: KioskSignInType) => void; greeting?: string; punctuation?: string; navigate: (route: string) => void; children: (props: SignInProps) => ReactNode; }) => ReactNode; export default SignIn;