sybz-components 0.0.2

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.
@@ -0,0 +1,18 @@
1
+ const n = `/**
2
+ * 返回当前测试占位字符串。
3
+ *
4
+ * 这个方法主要用于确认工具函数导出链路是否正常。
5
+ *
6
+ * @returns 固定字符串 \`test\`。
7
+ *
8
+ * @example
9
+ * onlyTest()
10
+ * // => 'test'
11
+ */
12
+ export function onlyTest(): string {
13
+ return 'test'
14
+ }
15
+ `;
16
+ export {
17
+ n as default
18
+ };