@choerodon/master
Version:
A package of Master for Choerodon platform.
20 lines (19 loc) • 467 B
TypeScript
import { CSSProperties } from 'react';
declare type C7NPageProps = {
className?: string;
service?: string[];
onAccess?: CallableFunction;
};
declare type PageHeaderProps = {
backPath?: string | null;
className?: string;
};
declare type PageContentProps = {
link?: string;
values?: any;
className?: string;
code?: string;
style?: CSSProperties;
AppState: any;
};
export { C7NPageProps, PageHeaderProps, PageContentProps, };