UNPKG

317 BTypeScriptView Raw
1import type { Verification } from "./types";
2export interface ExpirationDateVerification extends Verification {
3 month: string | null;
4 year: string | null;
5}
6export declare function expirationDate(value: string | Record<string, string | number> | unknown, maxElapsedYear?: number): ExpirationDateVerification;