mirror of
https://github.com/zadam/trilium.git
synced 2025-11-06 13:26:01 +01:00
5 lines
167 B
TypeScript
5 lines
167 B
TypeScript
|
|
type ValidatorArg = object | undefined | null;
|
||
|
|
|
||
|
|
type ValidatorFunc = (obj: ValidatorArg) => (string | undefined);
|
||
|
|
|
||
|
|
type ValidatorMap = Record<string, ValidatorFunc[]>;
|