mirror of
https://github.com/foomo/contentfultree.git
synced 2025-10-16 12:25:41 +00:00
7 lines
464 B
TypeScript
7 lines
464 B
TypeScript
import { EntryProps, KeyValueMap } from 'contentful-management';
|
|
import { ContentTreeNodeProps } from './ContentTreeNode';
|
|
export declare const emptyNodeProps: () => ContentTreeNodeProps;
|
|
export declare const cfEntriesToNodes: (entries: Array<EntryProps<KeyValueMap>>, titleFields: string[], stLocale: string, locales: string[], nodeContentTypes: string[], iconRegistry?: {
|
|
[index: string]: string;
|
|
} | undefined, parentId?: string) => ContentTreeNodeProps[];
|