mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-11 07:04:06 -08:00
28 lines
426 B
TypeScript
28 lines
426 B
TypeScript
|
export interface IFormQuery {
|
||
|
includeTodayCount?: boolean;
|
||
|
}
|
||
|
|
||
|
export interface IWebhook {
|
||
|
url: string;
|
||
|
handshakeKey?: string;
|
||
|
metadata?: boolean;
|
||
|
}
|
||
|
|
||
|
interface ISubField {
|
||
|
DefaultVal: string;
|
||
|
ID: string;
|
||
|
Label: string;
|
||
|
}
|
||
|
|
||
|
export interface IField {
|
||
|
Title: string;
|
||
|
Instructions: string;
|
||
|
IsRequired: number;
|
||
|
ClassNames: string;
|
||
|
DefaultVal: string;
|
||
|
Page: number;
|
||
|
Type: string;
|
||
|
ID: string;
|
||
|
SubFields: [ISubField];
|
||
|
}
|