mirror of
https://github.com/zadam/trilium.git
synced 2026-07-11 15:33:18 +02:00
3 lines
128 B
TypeScript
3 lines
128 B
TypeScript
export type ValidatorFunc = (obj: unknown) => (string | undefined);
|
|
|
|
export type ValidatorMap = Record<string, ValidatorFunc[]>; |