mirror of
https://github.com/documenso/documenso.git
synced 2025-11-10 12:32:34 +10:00
9 lines
181 B
TypeScript
9 lines
181 B
TypeScript
import { FieldType } from '@prisma/client';
|
|
|
|
export const AUTO_SIGNABLE_FIELD_TYPES: FieldType[] = [
|
|
FieldType.NAME,
|
|
FieldType.INITIALS,
|
|
FieldType.EMAIL,
|
|
FieldType.DATE,
|
|
];
|