rimiti/stimmy

View on GitHub
src/lib/types.ts

Summary

Maintainability
A
0 mins
Test Coverage
type Replacer = (value: string, items: Array<string | number> | unknown) => string;
type Items = unknown | (string | number)[];

export { Replacer, Items };