UNPKG

@bitblit/ratchet-aws

Version:

Common tools for use with AWS browser and node

6 lines (5 loc) 235 B
import { ExpiringCode } from './expiring-code.js'; export interface ExpiringCodeProvider { storeCode(code: ExpiringCode): Promise<boolean>; checkCode(code: string, context: string, deleteOnMatch?: boolean): Promise<boolean>; }