docs: field types

This commit is contained in:
James
2020-12-31 11:19:59 -05:00
parent 19b92c4748
commit cd0becb7ba
12 changed files with 469 additions and 91 deletions

View File

@@ -69,6 +69,7 @@ export interface FieldBase {
export type NumberField = FieldBase & {
type: 'number';
admin?: Admin & {
autoComplete?: string
placeholder?: string
step?: number
}