deploy: v0.12 fix 存档key名

This commit is contained in:
2026-06-24 03:09:02 +00:00
parent 7a08d49fe3
commit e0a5281119
58743 changed files with 7297269 additions and 39505 deletions
+22
View File
@@ -0,0 +1,22 @@
import { LRLanguage, LanguageSupport, Language } from '@codemirror/language';
/**
A language provider based on the [Lezer YAML
parser](https://github.com/lezer-parser/yaml), extended with
highlighting and indentation information.
*/
declare const yamlLanguage: LRLanguage;
/**
Language support for YAML.
*/
declare function yaml(): LanguageSupport;
/**
Returns language support for a document parsed as `config.content`
with an optional YAML "frontmatter" delimited by lines that
contain three dashes.
*/
declare function yamlFrontmatter(config: {
content: Language | LanguageSupport;
}): LanguageSupport;
export { yaml, yamlFrontmatter, yamlLanguage };