mirror of
https://github.com/zadam/trilium.git
synced 2026-01-15 19:14:30 +01:00
4 lines
129 B
TypeScript
4 lines
129 B
TypeScript
export type ValidatorFunc = (obj: unknown) => (string | undefined);
|
|
|
|
export type ValidatorMap = Record<string, ValidatorFunc[]>;
|