kirby-types 1.1.0 → 1.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/panel/index.d.ts +13 -0
package/package.json
CHANGED
package/src/panel/index.d.ts
CHANGED
|
@@ -248,6 +248,19 @@ export type {
|
|
|
248
248
|
PanelLibrary,
|
|
249
249
|
} from "./libraries";
|
|
250
250
|
|
|
251
|
+
// =============================================================================
|
|
252
|
+
// Re-exports from panel.writer.ts
|
|
253
|
+
// =============================================================================
|
|
254
|
+
|
|
255
|
+
export type {
|
|
256
|
+
// Writer Utilities
|
|
257
|
+
WriterUtils,
|
|
258
|
+
// Writer Contexts
|
|
259
|
+
WriterMarkContext,
|
|
260
|
+
WriterNodeContext,
|
|
261
|
+
WriterExtensionContext,
|
|
262
|
+
} from "./writer";
|
|
263
|
+
|
|
251
264
|
// =============================================================================
|
|
252
265
|
// Panel App
|
|
253
266
|
// =============================================================================
|