typebulb 0.15.2 → 0.15.4

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/dist/render.d.ts CHANGED
@@ -40,3 +40,7 @@ export declare function slugifyBulbName(source: string): string
40
40
 
41
41
  /** The source with its leading `---` frontmatter block stripped. */
42
42
  export declare function stripFrontmatter(source: string): string
43
+
44
+ /** Structural problems a bulb's Markdown has (chiefly an unterminated fence that swallowed a block);
45
+ * one message per problem, empty when well-formed. */
46
+ export declare function validateBulbStructure(content: string): string[]