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