* init: page navigation pane * chore: outline and info tabs * chore: asset download endpoint * chore: realtime document info updates * chore: add support for code splitting * fix: formatting * refactor: image block id generation * chore: implement translation * refactor: assets list storage logic * fix: build errors * fix: image extension name * refactor: add support for additional asset items * refactor: asset extraction logic * chore: add translations * fix: merge conflicts resolved from preview * chore: remove version history option from the dropdown * chore: query params handling * chore: remove unnecessary logic * refactor: empty state components * fix: empty state asset path
11 lines
360 B
TypeScript
11 lines
360 B
TypeScript
// plane imports
|
|
import { TEditorAsset } from "@plane/editor";
|
|
// store
|
|
import { TPageInstance } from "@/store/pages/base-page";
|
|
|
|
export type TAdditionalPageNavigationPaneAssetItemProps = {
|
|
asset: TEditorAsset;
|
|
page: TPageInstance;
|
|
};
|
|
|
|
export const AdditionalPageNavigationPaneAssetItem: React.FC<TAdditionalPageNavigationPaneAssetItemProps> = () => null;
|