9 lines
244 B
TypeScript
9 lines
244 B
TypeScript
/// <reference types="react" />
|
|
export type MetaInfoProps = {
|
|
data: Record<string, any>;
|
|
fields: {
|
|
label: string;
|
|
attr: string;
|
|
}[];
|
|
};
|
|
export declare function MetaInfo({ fields, data }: MetaInfoProps): JSX.Element;
|