6 lines
176 B
TypeScript
6 lines
176 B
TypeScript
import type { KintoneFormFieldProperty } from '@kintone/rest-api-client';
|
|
|
|
export type KintoneFormFieldProperties = {
|
|
[fieldCode: string]: KintoneFormFieldProperty.OneOf;
|
|
};
|