Notes/src/etapi/etapi-interface.ts

4 lines
129 B
TypeScript
Raw Normal View History

export type ValidatorFunc = (obj: unknown) => (string | undefined);
2024-04-07 15:13:34 +03:00
2024-12-22 15:45:54 +02:00
export type ValidatorMap = Record<string, ValidatorFunc[]>;