UNPKG

react-girocode

Version:

A react component for displaying an EPC-QR-Code

9 lines (8 loc) 260 B
type StringOfLength<Max> = string & { max: Max; readonly StringOfLength: unique symbol; }; declare const StringOfLength: <Max extends number>(input: string | undefined, { max }: { max: Max; }) => StringOfLength<Max>; export default StringOfLength;