mirror of
https://github.com/TriliumNext/Notes.git
synced 2026-01-02 19:09:55 -06:00
3 lines
114 B
TypeScript
3 lines
114 B
TypeScript
type ValidatorFunc = (obj: unknown) => (string | undefined);
|
|
|
|
type ValidatorMap = Record<string, ValidatorFunc[]>; |