Skip to content

Commit

Permalink
Merge pull request #53 from kiner-tang/feat/types-all
Browse files Browse the repository at this point in the history
types: 优化项目类型描述,提升开发体验
  • Loading branch information
kiner-tang committed Dec 17, 2022
2 parents 20c7703 + 3e5ece7 commit 070c745
Show file tree
Hide file tree
Showing 74 changed files with 1,608 additions and 496 deletions.
8 changes: 8 additions & 0 deletions .changeset/pink-paws-dance.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
"@ossa/loki": minor
"ossaui": minor
"ossa-demo": minor
"ossa-doc": minor
---

types: 项目类型描述优化
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"prettier --write"
],
"*.ts?(x)": [
"eslint"
"eslint --fix"
]
},
"author": "",
Expand Down
2 changes: 1 addition & 1 deletion packages/loki/libs/components/BigWheel/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
/* eslint-disable import/newline-after-import */
/**
* @name 大转盘
* @description
Expand All @@ -13,5 +12,6 @@
**/
import React from "react";
import { IBigWheel } from "./../../types/loki";

declare const BigWheel: React.FC<IBigWheel>;
export default BigWheel;
2 changes: 1 addition & 1 deletion packages/loki/libs/components/BigWheel/index.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/loki/libs/components/FlipCard/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
/* eslint-disable import/newline-after-import */
/**
* @name 翻卡
* @description
Expand All @@ -11,5 +10,6 @@
**/
import React from "react";
import { IFlipCard } from "./../../types/loki";

declare const FlipCard: React.FC<IFlipCard>;
export default FlipCard;
2 changes: 1 addition & 1 deletion packages/loki/libs/components/NineGrid/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
/* eslint-disable import/newline-after-import */
/**
* @name 九宫格
* @description
Expand All @@ -10,5 +9,6 @@
**/
import React from "react";
import { INineGrid } from "./../../types/loki";

declare const NineGrid: React.FC<INineGrid>;
export default NineGrid;
2 changes: 1 addition & 1 deletion packages/loki/libs/components/NineGrid/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 070c745

Please sign in to comment.