File size: 306 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 |
declare module '@wordpress/block-editor' {
interface Props {
[ key: string ]: unknown;
}
export const store: any;
export const __unstableIframe: React.ComponentType< Props >;
export const __unstableEditorStyles: React.ComponentType< Props >;
export const privateApis: Record< string, unknown >;
}
|