UNPKG

react-girocode

Version:

A react component for displaying an EPC-QR-Code

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