1
0
Snowz 9218f57271 chore: 添加初始项目文件和依赖项
初始化项目,添加 favicon.ico、screenshot.png 等静态资源文件,以及 Vue、TailwindCSS 等依赖项。配置了 Vite 和 PostCSS,并生成了基本的项目结构。
2025-04-14 18:19:10 +08:00

17 lines
835 B
TypeScript

export { createNode } from './doc/createNode';
export type { CreateNodeContext } from './doc/createNode';
export { debug, warn } from './log';
export type { LogLevelId } from './log';
export { createPair } from './nodes/Pair';
export { toJS } from './nodes/toJS';
export type { ToJSContext } from './nodes/toJS';
export { findPair } from './nodes/YAMLMap';
export { map as mapTag } from './schema/common/map';
export { seq as seqTag } from './schema/common/seq';
export { string as stringTag } from './schema/common/string';
export { foldFlowLines } from './stringify/foldFlowLines';
export type { FoldOptions } from './stringify/foldFlowLines';
export type { StringifyContext } from './stringify/stringify';
export { stringifyNumber } from './stringify/stringifyNumber';
export { stringifyString } from './stringify/stringifyString';