mirror of
https://github.com/streetwriters/notesnook.git
synced 2025-12-16 11:47:54 +01:00
7 lines
191 B
TypeScript
7 lines
191 B
TypeScript
import React from 'react';
|
|
export interface NodeViewWrapperProps {
|
|
[key: string]: any;
|
|
as?: React.ElementType;
|
|
}
|
|
export declare const NodeViewWrapper: React.FC<NodeViewWrapperProps>;
|