mirror of
https://github.com/TriliumNext/Notes.git
synced 2026-01-10 06:49:54 -06:00
4 lines
127 B
TypeScript
4 lines
127 B
TypeScript
export type ValidatorFunc = (obj: unknown) => string | undefined;
|
|
|
|
export type ValidatorMap = Record<string, ValidatorFunc[]>;
|