mirror of
https://github.com/zadam/trilium.git
synced 2026-02-14 02:16:59 +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[]>; |