mirror of
https://github.com/zadam/trilium.git
synced 2025-10-21 07:38:53 +02:00
4 lines
127 B
TypeScript
4 lines
127 B
TypeScript
export type ValidatorFunc = (obj: unknown) => string | undefined;
|
|
|
|
export type ValidatorMap = Record<string, ValidatorFunc[]>;
|