19 lines
578 B
TypeScript
19 lines
578 B
TypeScript
import React from 'react';
|
|
import { WebComponentProps } from 'oak-frontend-base';
|
|
import { EntityDict } from '../../../oak-app-domain';
|
|
declare const Cos: (props: WebComponentProps<EntityDict, keyof EntityDict, false, {
|
|
currentConfig: EntityDict["application"]["OpSchema"]["config"];
|
|
dirty: boolean;
|
|
entity: string;
|
|
name: string;
|
|
selections: {
|
|
name: string;
|
|
value: string;
|
|
}[];
|
|
}, {
|
|
setValue: (path: string, value: any) => void;
|
|
resetConfig: () => void;
|
|
updateConfig: () => void;
|
|
}>) => React.JSX.Element;
|
|
export default Cos;
|