components
2 years ago
extensions
2 years ago
hooks
2 years ago
inline-extensions
2 years ago
lib
2 years ago
supports
3 years ago
transforms
2 years ago
ai-assistant.php
2 years ago
index.d.ts
2 years ago
types.ts
3 years ago
index.d.ts
19 lines
| 1 | interface Window { |
| 2 | Jetpack_Editor_Initial_State: { |
| 3 | siteLocale: string; |
| 4 | adminUrl: string; |
| 5 | available_blocks: { |
| 6 | 'jetpack/ai-assistant-support': boolean; |
| 7 | }; |
| 8 | tracksUserData: { |
| 9 | userid: number; |
| 10 | username: string; |
| 11 | }; |
| 12 | wpcomBlogId: string; |
| 13 | }; |
| 14 | } |
| 15 | |
| 16 | interface String { |
| 17 | replaceAll( pattern: string, replacement: string ): string; |
| 18 | } |
| 19 |