mirror of
https://github.com/zadam/trilium.git
synced 2025-11-07 06:59:04 +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[]>; |