| 1 |
import { CodeEditorInstance, EditorOption, WordPressUtils } from './editor' |
| 2 |
|
| 3 |
declare global { |
| 4 |
interface Window { |
| 5 |
pagenow: string |
| 6 |
ajaxurl: string |
| 7 |
wp: WordPressUtils |
| 8 |
code_snippets_tags: { allow_spaces: boolean, available_tags: string[] } |
| 9 |
code_snippets_editor?: CodeEditorInstance |
| 10 |
code_snippets_editor_preview?: CodeEditorInstance |
| 11 |
code_snippets_editor_settings: EditorOption[] |
| 12 |
code_snippets_edit_i18n: Record<string, string> |
| 13 |
code_snippets_manage_i18n: Record<string, string> |
| 14 |
} |
| 15 |
} |
| 16 |
|