/** * 用于 Brick Next 的 Pipes 管道列表。源代码托管在 GitHub {@link https://github.com/easyops-cn/brick-next-pipes | easyops-cn/brick-next-pipes}。 * * @remarks * * 使用 TypeScript: * * ```ts * import { pipes } from "@easyops-cn/brick-next-pipes"; * * const stringified = pipes.yamlStringify(yourObject); * ``` * * 在编排中使用求值占位符: * * ```yaml * prop: "<% yourObject |> PIPES.yamlStringify %>" * # or * prop: "<% PIPES.yamlStringify(yourObject) %>" * ``` * * 在编排中使用注入占位符或 Transform: * * ```yaml * prop: "${ yourObject | yamlStringify }" * # or * prop: "@{ yourObject | yamlStringify }" * ``` * * @packageDocumentation */ export * from "./add"; export * from "./boolean"; export * from "./cmdbInstanceShowName"; export * from "./countBy"; export * from "./datetime"; export * from "./deltaTime"; export * from "./divide"; export * from "./equal"; export * from "./find"; export * from "./findIndex"; export * from "./findLast"; export * from "./findLastIndex"; export * from "./get"; export * from "./graphTree"; export * from "./groupBy"; export * from "./groupByToIndex"; export * from "./includes"; export * from "./join"; export * from "./json"; export * from "./jsonStringify"; export * from "./keyBy"; export * from "./map"; export * from "./mapToArray"; export * from "./mergeArrayByKey"; export * from "./multiply"; export * from "./not"; export * from "./nullish"; export * from "./number"; export * from "./parseTimeRange"; export * from "./randomString"; export * from "./reverse"; export * from "./slice"; export * from "./sort"; export * from "./split"; export * from "./string"; export * from "./substr"; export * from "./substring"; export * from "./subtract"; export * from "./ternary"; export * from "./uniq"; export * from "./unitFormat"; export * from "./yaml"; export * from "./yamlStringify"; export * from "./round"; export * from "./atobUnicode"; export * from "./btoaUnicode"; //# sourceMappingURL=index.d.ts.map