17 lines
558 B
TypeScript
17 lines
558 B
TypeScript
import React from 'react';
|
|
import { EntityDict } from 'oak-domain/lib/base-app-domain';
|
|
import { RowWithActions, WebComponentProps } from '../../../types/Page';
|
|
export default function Render(props: WebComponentProps<EntityDict, 'i18n', false, {
|
|
i18n: RowWithActions<EntityDict, 'i18n'>;
|
|
dataArray: Array<{
|
|
key: string;
|
|
value: string;
|
|
}>;
|
|
}, {
|
|
myUpdate: (newArray: Array<{
|
|
key: string;
|
|
value: string;
|
|
}>) => void;
|
|
arraysAreEqual: (first: Object[], second: Object[]) => boolean;
|
|
}>): React.JSX.Element;
|