mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
"fix" the eslint-disable-next-line that broke because of the re-formatting
This commit is contained in:
parent
e5222021d4
commit
91be6355ef
|
@ -144,10 +144,11 @@ const slots = defineSlots<{
|
||||||
filters: Record<string, boolean | string | string[]>;
|
filters: Record<string, boolean | string | string[]>;
|
||||||
setKeyValue: (key: string, value: unknown) => void;
|
setKeyValue: (key: string, value: unknown) => void;
|
||||||
}): unknown;
|
}): unknown;
|
||||||
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
||||||
default(props: {
|
default(props: {
|
||||||
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
||||||
data: any;
|
data: any;
|
||||||
columns?: DatatableColumn[];
|
columns?: DatatableColumn[];
|
||||||
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
||||||
updateItemSize?: (data: any) => void;
|
updateItemSize?: (data: any) => void;
|
||||||
}): unknown;
|
}): unknown;
|
||||||
item(props: { item: unknown; index: number }): unknown;
|
item(props: { item: unknown; index: number }): unknown;
|
||||||
|
|
Loading…
Reference in a new issue